Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Dialog
- data
- 계측
- ScrollView
- DART
- Flutter
- 테스트
- Kotlin
- textview
- CustomScrollView
- TEST
- Coroutines
- scroll
- appbar
- 앱바
- viewmodel
- android
- 앱
- drift
- Compose
- 안드로이드
- textfield
- Button
- LifeCycle
- Navigation
- tabbar
- activity
- binding
- livedata
- intent
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 |