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

트리에서 자식들에게 효율적으로 정보를 전달할 수 있게 해주는 위젯입니다. build context에서 inherited widget의 특정 타입의 가장 가까운 인스턴스를 얻고 싶다면, BuildContext.dependOnInheritedWidgetOfExactType를 사용하세요. Inherited widgets이 이런식으로 참조 될 때, 해당 위젯의 상태가 바뀌면 그것을 참조하는 consumer들은 rebuild 해아합니다. 다음은 FrogColor라는 inherited widget의 뼈대입니다. Implementing the of method 관습적으로 InheritedWidget는 BuildContext.dependOnInheritedWidgetOfExactType을 호출하는 static 메소드를..
Flutter/API
2023. 2. 17. 13:58