250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- intent
- Kotlin
- Flutter
- appbar
- 계측
- activity
- ScrollView
- CustomScrollView
- Navigation
- viewmodel
- DART
- Dialog
- 테스트
- livedata
- 앱바
- tabbar
- 앱
- drift
- Compose
- scroll
- TEST
- android
- binding
- textfield
- LifeCycle
- Button
- data
- textview
- Coroutines
- 안드로이드
Archives
- Today
- Total
Study Record
[Flutter/TextField] 비밀번호 입력 설정 본문
728x90
✍ TextField 에서 비밀번호 입력 설정
입력 폼 중 비밀번호를 입력하는 형식이면 글자를 입력할 때 작은 원으로 보이는 기능은 TextField 의 obscureText 를 true 로 해주면 된다.
TextField(
obscureText: true,
)
728x90
'Flutter > widget_TextField' 카테고리의 다른 글
[Flutter/TextField] 입력 폼 border (0) | 2023.03.31 |
---|---|
[Flutter] Form + TextFormField - 한번에 입력 값 관리하기, errorText, border (0) | 2023.03.03 |
[Flutter] 입력 받기 (TextField) (0) | 2023.02.25 |
[Flutter/TextField] 키보드 액션 버튼 값 바꾸기 (textInputAction) (0) | 2023.02.25 |
[Flutter/TextField] decoration, text, hint (0) | 2023.02.24 |