본문 바로가기

TextField22

Flutter 텍스트 필드의 밑줄 색상을 변경하는 방법은 무엇인가요?, How to change textField underline color? 질문 I'm new to both flutter & dart. Currently, using this in one of my personal projects. In all of my form, the underline of textField is showing in blue color. I want to change that to some other color. The piece of code which I'm using is like... new TextField( controller: this._emailController, decoration: new InputDecoration( hintText: "Enter your email", labelText: "Email", labelStyle: new .. 2023. 5. 31.
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의 TextField에서 값의 끝에 커서 위치를 설정하는 방법은 무엇인가요?, how to set cursor position at the end of the value in flutter in textfield? 질문 저는 텍스트 필드의 값 끝에 ,00을 추가하고 싶습니다. iOS 기기에서는 잘 작동하지만 Android에서는 커서가 텍스트 필드의 값 시작 지점으로 이동합니다. 결과적으로 ,00을 추가할 수 없습니다. 답변 저는 TextEditingController을 설정하는 데 동일한 문제를 겪고 있었는데, 이게 제게 작동했습니다. controller.text = someString; controller.selection = TextSelection.fromPosition(TextPosition(offset: controller.text.length)); TextSelection.fromPosition()은 다음을 수행합니다 (문서에서): 주어진 텍스트 위치에서 축소된 선택을 생성합니다. 축소된 선택은 시작과 .. 2023. 5. 28.
Flutter 텍스트 필드 테두리 색상을 변경할 수 없습니다., Not able to change TextField Border Color 질문 저는 TextField의 테두리 색상을 BorderSide를 사용하여 변경하려고 시도했지만 작동하지 않습니다. 아래는 제 코드입니다. new TextField( decoration: new InputDecoration( border: new OutlineInputBorder( borderSide: new BorderSide(color: Colors.teal) ), hintText: 'Tell us about yourself', helperText: 'Keep it short, this is just a demo.', labelText: 'Life story', prefixIcon: const Icon(Icons.person, color: Colors.green,), prefixText: ' ', s.. 2023. 5. 28.