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 bloc
- PlatformException(sign_in_failed
- swift 동시성
- valorant api dart
- com.google.GIDSignIn
- swift concurrency
- flutter statefulwidget
- widget
- dart
- riot api dart
- dart new
- leetcode dart
- 파이썬
- flutter
- AnimationController
- generate parentheses dart
- 파이썬 부동소수점
- docker overview
- flutter ios 폴더
- 롤 api dart
- dart new 키워드
- keychain error
- Architectural overview
- 롤토체스 api dart
- 발로란트 api dart
- tft api dart
- flutter android 폴더
- dart.dev
- lol api dart
- flutter widget
Archives
- Today
- Total
목록flutter restorationmixin (1)
aspe

StatefulWidget의 State 객체를 위한 restoration 데이터를 관리합니다. Restoration 데이터는 직렬화되어 나중에 State 객체의 stateful 멤버를 데이터가 생성되었을 때와 동일한 값으로 복원하는 데 사용될 수 있습니다. (예를 들면, 앱을 최소화하여 다른 작업을 하고 왔을 때, 이전의 상태값을 복원하는 것 더 나은 UX를 제공) 이 mixin은 RestorableProperty인 State 객체의 restoration 데이터를 구조화합니다. State 객체가 복원하는 동안 복원하고자 하는 모든 정보들은 RestorableProperty의 서브클래스에 저장되어야 합니다. 예를 들면, 카운터 앱의 카운트 값을 저장하고 싶다면, 단순한 int 타입으로 값을 저장하는 게 아..
Flutter/API
2023. 2. 17. 13:58