본문 바로가기

TextInputType3

Flutter 텍스트 필드의 콘텐츠 패딩을 어떻게 제거하나요?, How do I remove content padding from TextField? 질문 나는 플러터에 새로 왔고 로그인 폼을 만들고 있습니다. 이를 위해 TextField를 사용하고 접두사 아이콘을 추가했지만 텍스트 필드(사용자 ID 및 핀) 사이와 접두사 아이콘 앞에 추가 공간이 생깁니다. InputDecorationTheme도 시도해 보았지만 작동하지 않았습니다. 공간을 제거하거나 줄이는 방법을 알려주세요.?? 아래는 내 코드입니다: TextField( maxLength: 8, keyboardType: TextInputType.number, decoration: InputDecoration( hintText: hint, hintStyle: TextStyle(fontSize: 12.0), prefixIcon: Icon(icon), counterText: '', ), ) 답변 업데이트.. 2023. 9. 21.
Flutter 플러터에서 비밀번호 입력 타입을 추가하는 방법은 안드로이드 네이티브 EditText의 inputtype:password와 같이 사용자 입력 비밀번호가 보이지 않도록합니다., How to add a Password input type in flutte.. 질문 Flutter의 TextInputType에는 암호 유형이 없는 문제가 있습니다: /// 모든 가능한 열거형 값. static const List values = const [ text, multiline, number, phone, datetime, emailAddress, url, ]; 비밀번호 사용자 입력을 어떻게 보이지 않게 만들 수 있을까요? 좋은 아이디어가 있는 분 있나요? 답변 만약 TextField 위젯 (또는 이 위젯에서 파생된 무언가)을 사용하는 경우, obscureText 속성을 사용하여 true로 설정할 수 있습니다. 자세한 내용은 여기에서 확인할 수 있습니다. 또한, 입력 제안을 방지하는 이러한 속성을 추가하는 것이 좋습니다. 이는 암호 입력의 일부를 화면 뷰어에 노출할 위험이.. 2023. 5. 30.
Flutter에서 숫자 입력 필드를 만드는 방법은 무엇인가요?, How to create number input field in Flutter? 질문 I'm unable to find a way to create an input field in Flutter that would open up a numeric keyboard and should take numeric input only. Is this possible with Flutter material widgets? Some GitHub discussions seem to indicate this is a supported feature but I'm unable to find any documentation about it. 답변 당신은 keyboardType을 사용하여 TextField에 숫자를 지정할 수 있습니다: keyboardType: TextInputType.number 내 ma.. 2023. 5. 8.