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 | 31 |
Tags
- 플러터 뷰 컨트롤러
- 스위프트 앨범
- 안드로이드 바로가기
- 스위프트 테이블 뷰 셀
- flutter rotate
- 스위프트 카메라
- 안드로이드 앨범
- 앱 백그라운드 푸시 데이터 저장
- 안드로이드 FCM
- swift 문자
- FlutterView MethodChannel
- Swift flutterviewcontroller
- 스위프트 푸시
- Swift flutterview
- 스위프트 웹뷰
- 스위프트
- silent push
- flutter 회전
- Flutter UIKitView MethodChannel
- NotificationService Extension
- native flutter view
- 안드로이드 숏컷
- 앱 꺼졌을 때 푸시 데이터 저장
- swift sms
- Flutter NativeView
- 노티피케이션 익스텐션
- swift autolayout
- 안드로이드 에러
- 푸시 데이터 저장
- 스위프트 UserDefaults
Archives
- Today
- Total
목록flutter popuntil with data (1)
Things take time
[Flutter] popUntil할 때 데이터 전달까지 하고싶다면
[popUntil] Navigator.popUntil(context, (route) => false) 네비게이터에서 제공하는 pop()은 스택구조에서 제일 위에 있는 루트를 제거하는 기능이다. 근데 만약 A->B->C 순서대로 루트를 호출한 상태에서 C-> A로 가면서 B도 제거하고 싶다면 popUntil을 통해 제거할 수 있다 Navigator.popUntil(context, ModalRoute.withName("/")); 루트테이블에 "/"로 등록된게 A루트라면, 위와 같은 코드로 돌아갈 수 있다. 그런데 C->A루트로 이동할때 데이터를 전달하고 싶다면 어떻게 해야하는가? [참고 사이트] https://medium.com/@hungregistermail/flutter-popuntil-with-retu..
Flutter
2020. 7. 16. 15:08