본문 바로가기

TextFormField9

Flutter에서 다음 TextField로 포커스를 이동하는 방법은 무엇인가요?, How to shift focus to the next TextField in Flutter? 질문 저는 플러터를 처음 사용합니다. Form, TextFormField 위젯을 사용하여 여러 텍스트 입력란이있는 양식을 작성하고 있습니다. 나타나는 키보드에서는 "다음" (다음 필드로 포커스를 이동해야 함) 필드 작업이 아니라 "완료" 작업 (키보드를 숨기는 작업)이 표시되지 않습니다. 공식 문서에서 힌트를 찾아보았지만 직접적으로 할 수있는 것은 없었습니다. 나는 FocusNode (cookbook, api doc)에 도달했습니다. 이것은 앱에서 버튼이나 기타 작업을 사용하여 포커스를 이동시키는 메커니즘을 제공하지만 키보드에서 작동하도록하고 싶습니다. 답변 Screenshot: Just use: textInputAction: TextInputAction.next: To move the cursor to.. 2023. 5. 28.
Flutter에서 텍스트 필드 내부의 값을 어떻게 변경하나요?, How do you change the value inside of a textfield flutter? 질문 사용자가 버튼을 클릭하면 정보가 채워지는 TextEditingController가 있습니다. Textfield 또는 TextFormField 내부의 텍스트를 변경하는 방법을 찾을 수 없습니다. 해결책이 있을까요? 답변 text 속성을 간단히 변경하십시오. TextField( controller: txt, ), RaisedButton(onPressed: () { txt.text = "My Stringt"; }), txt는 단지 TextEditingController일 뿐입니다. var txt = TextEditingController(); 2023. 5. 26.
Flutter 플러터에서 TextField 하단의 글자 수 카운터를 숨기는 방법은 무엇인가요?, How can I hide letter counter from bottom of TextField in Flutter 질문 Flutter에서 작은 문제를 마주하고 있습니다. 보시다시피, TextField의 maxLength를 1로 설정했지만, 텍스트 카운터의 하단 레이블을 숨길 수 없습니다. 답변 TextField 또는 TextFormField 위젯에서 maxLength 속성을 사용하면 카운터 값을 숨기려면 다음을 시도하십시오. TextField( decoration: InputDecoration( hintText: "Email", counterText: "", ), maxLength: 40, ), 여기서 나는 빈 값으로 InputDecoration 속성 내에 counterText 속성을 설정했습니다. 도움이 되기를 바랍니다. 2023. 5. 16.
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.