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
- LifeCycle
- TEST
- Kotlin
- Flutter
- Dialog
- textview
- ScrollView
- drift
- viewmodel
- Coroutines
- 앱바
- scroll
- livedata
- activity
- Navigation
- data
- CustomScrollView
- 테스트
- binding
- Compose
- 앱
- android
- intent
- 안드로이드
- textfield
- DART
- tabbar
- Button
- appbar
- 계측
Archives
- Today
- Total
목록backpress (1)
Study Record
[Flutter] 뒤로 가기(back press) 버튼 컨트롤 (WillPopScope)
🎁 WillPopScope Widget 안드로이드에서 뒤로 가기 버튼을 누르거나 system back button 이 실행되면 현재 화면이 종료되거나(Route Stack Pop) 앱이 종료된다. 이러한 액션이 실행되기 전에 콜백 이벤트를 받아 액션을 실행할지 말지 정할 수 있게 해주는 위젯이 WillPopScope 이다. onWillPop 인자로 콜백 이벤트 인자를 받아 리턴값이 true 이면 액션을 그대로 실행하고 false 이면 액션을 실행하지 않는다. WillPopScope( onWillPop: () async { return true; }, child: Scaffold( body: Center(child: Text("back press test")), ), ); 😶 간단한 예시) 뒤로 가기 버튼..
Flutter
2023. 4. 24. 14:18