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

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