본문 바로가기

TextFormField9

Flutter 플러터에서 TextFormField의 입력 텍스트 색상을 변경하는 방법, How to change TextFormField input text color in Flutter 질문 대학에서 플러터 앱의 UI를 만들고 있습니다. TextFormField에 입력된 텍스트를 흰색으로 표시하고 싶습니다. 이는 불필요하게 어렵습니다. 구글링 등을 시도해 보았지만 명확한 답변을 찾을 수 없습니다. new Theme( // 이는 밑줄의 색상을 지정합니다 data: theme.copyWith( primaryColor: Colors.white, hintColor: Colors.transparent, ), child: new Padding( padding: const EdgeInsets.fromLTRB(32.0, 40.0, 32.0, 4.0), child: TextFormField( key: Key('username'), keyboardType: TextInputType.text, contro.. 2023. 9. 29.
Flutter 플러터에서 텍스트 필드 입력의 길이를 제한하는 방법은 무엇인가요?, How can I limit the length of a text field input in flutter? 질문 TextField 위젯에는 입력 가능한 문자 수를 제한하는 "limit" 속성이 없는 것 같습니다. TextField 위젯에서 입력으로 제공할 수 있는 문자 수를 제한하는 방법은 무엇인가요? decoration 속성을 살펴보고 그곳에서 제한을 설정해보려고 했지만 잘 작동하지 않았습니다. 사용해야 할 다른 위젯이 있을까요? 답변 inputFormatters 속성을 사용합니다. 예시: TextFormField( inputFormatters: [ LengthLimitingTextInputFormatter(10), ] ) 네임스페이스 import 'package:flutter/services.dart'; 2023. 9. 6.
Flutter 플러터에서 텍스트 편집 필드 비활성화, Disable a text edit field in flutter 질문 I need to disable TextFormField occasionally. I couldn't find a flag in the widget, or the controller to simply make it read-only or disable. What is the best way to do it? 가끔 TextFormField를 비활성화해야 합니다. 위젯이나 컨트롤러에서 읽기 전용 또는 비활성화를 간단하게 만들 수 있는 플래그를 찾을 수 없습니다. 어떻게 하는 것이 가장 좋은 방법인가요? 답변 이 작업을 수행하는 또 다른 방법이 있습니다. 이 방법은 이 문제를 일으키지 않습니다. 누군가에게 도움이 되기를 바랍니다. AlwaysDisabledFocusNode를 만들고 TextField의 f.. 2023. 6. 18.
Flutter 텍스트 폼 필드에서 비밀번호를 표시/숨기는 방법은 무엇인가요?, How to show/hide password in TextFormField? 질문 현재 비밀번호는 다음과 같이 설정되어 있습니다: TextFormField TextFormField( decoration: const InputDecoration( labelText: 'Password', icon: const Padding( padding: const EdgeInsets.only(top: 15.0), child: const Icon(Icons.lock), )), validator: (val) => val.length _password = val, obscureText: true, ); 비밀번호를 보이게 하거나 숨기는 버튼과 같은 상호작용 버튼이 필요합니다. TextFormField 내에서.. 2023. 5. 29.