본문 바로가기

Flutter397

flutter 텍스트 필드에 초기값을 제공하는 방법은 무엇인가요?, How do I supply an initial value to a text field? 질문 I'd like to supply an initial value to a text field and redraw it with an empty value to clear the text. What's the best approach to do that with Flutter's APIs? 답변 당신은 TextField 대신 TextFormField을 사용하고 initialValue 속성을 사용할 수 있습니다. 예를 들어 TextFormField(initialValue: "I am smart") 2023. 5. 8.
Flutter에서 Column에 ListView를 추가하는 방법은 무엇인가요?, How to add a ListView to a Column in Flutter? 질문 Flutter 앱을 위한 간단한 로그인 페이지를 만들려고합니다. TextFields와 로그인 / 가입 버튼을 성공적으로 만들었습니다. 가로 ListView를 추가하려고합니다. 코드를 실행하면 요소가 사라지지만 ListView없이 수행하면 다시 정상입니다. 올바르게 어떻게 할 수 있을까요? return new MaterialApp( home: new Scaffold( appBar: new AppBar( title: new Text("로그인 / 가입"), ), body: new Container( child: new Center( child: new Column( mainAxisAlignment: MainAxisAlignment.center, children: [ new TextField( decora.. 2023. 5. 8.
flutter 시작 잠금 해제를 위해 다른 플러터 명령어를 기다리는 중입니다., Waiting for another flutter command to release the startup lock 질문 내 Flutter 애플리케이션을 실행하면 다음과 같은 메시지가 표시됩니다. Waiting for another flutter command to release the startup lock 그리고 더 진행하지 않습니다. 답변 내 경우, 터미널에서 다음 명령어가 도움이 되었습니다(Günter Zöchbauer의 댓글에서 제안한 대로): killall -9 dart 윈도우에서는 다음을 명령 프롬프트 또는 PowerShell 창에서 실행하십시오(upupming의 댓글에서 제안한 대로): taskkill /F /IM dart.exe (Windows에서 taskkill 플래그에 대해 여기에서 읽을 수 있습니다: here) 2023. 5. 8.
flutter 플러터로 빌드된 앱의 디스플레이 이름을 어떻게 변경할 수 있나요?, How can I change the app display name build with Flutter? 질문 저는 Flutter create testapp을 사용하여 앱을 만들었습니다. 이제 "testapp"에서 "My Trips Tracker"로 앱 이름을 변경하고 싶습니다. 어떻게 할 수 있을까요? AndroidManifest.xml에서 변경을 시도해 보았지만 변경되었습니다. 그러나 Flutter에서 제공하는 방법이 있을까요? 답변 안드로이드 AndroidManifest.xml을 엽니다(android/app/src/main에 위치함) // 여기에 앱 이름 입력 iOS info.plist를 엽니다(ios/Runner에 위치함) CFBundleDisplayName 앱 이름 // 여기에 앱 이름 입력 또는 앱을 중지하고 다시 실행하는 것을 잊지 마세요. 2023. 5. 8.