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 | 29 | 30 | 31 |
Tags
- binding
- textfield
- 테스트
- DART
- 앱바
- Button
- activity
- 계측
- Dialog
- Navigation
- data
- scroll
- tabbar
- Coroutines
- TEST
- 앱
- 안드로이드
- intent
- CustomScrollView
- Compose
- drift
- Kotlin
- LifeCycle
- appbar
- textview
- livedata
- android
- Flutter
- viewmodel
- ScrollView
Archives
- Today
- Total
목록FocusNode (1)
Study Record
[Flutter] focus 해제/요청하기, 키보드 내리기 (TextField)
✍ TextField 에서 Focus 다루기 TextField 의 autoFocus 를 true 로 하면 그 TextField 에 focus가 잡히면서 키보드가 자동으로 올라간다. TextField( autoFocus: true ) 😶 코드로 Focus 요청하기 사용자가 TextField 를 클릭하거나 액션 버튼을 눌렀을 때 다음 TextField 로 focus 가 넘어가는 등 이외에도 코드로 포커스를 잡거나 해제할 수 있다. 바로 FocusNode 를 사용한다. FocusNode = myFocusNode = FocusNode(); // TextField 에 focusNode 연결 TextField( focusNode: myFocusNode; ); // 연결된 TextField 에 포커스 주기 myFoc..
Flutter/widget
2023. 2. 26. 00:41