Obscured fields cannot be multiline
·
Flutter
flutter 에 TextField 라는 위젯이 있다. 이 위젯은 html의 input 같은 개념으로 사용 되는 것이다 . html의 라는 값이 있는데 오른쪽에 보이는 것 처럼 비밀번호 입력시에 안보이게 해주는 용도로 사용 되는 input tag 이다. 이 값은 flutter 에서 obscureText 라는 값이 password 의 효과와 같다. 아래의 코드에서 확인 가능하다 title: Text('비밀번호 입력'), content: TextField( controller: enteredPasswordController, // 컨트롤러 지정 obscureText: true, onChanged: (value) { enteredPassword = value; }, decoration: InputDecorat..
Flutter TextField : hintText 맨 위로 배치하기
·
Flutter
[문제] maxLength 를 지정하니 크기가 커진 TextField에 글씨가 가운대로 배치가 되었다. textAlign을 start 도 줘보고 했지만 결과는 바뀌지 않았다. [해결] textAlignVertical 속성을 TextAlignVertical.top 로 지정해 주었더니 해결 되었다. textAlignVertical: TextAlignVertical.top,
해니01_15
'플러터input' 태그의 글 목록