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.dev
- flutter
- tft api dart
- dart new
- swift 동시성
- 롤 api dart
- 파이썬 부동소수점
- 파이썬
- 롤토체스 api dart
- keychain error
- 발로란트 api dart
- docker overview
- flutter widget
- riot api dart
- flutter bloc
- generate parentheses dart
- dart new 키워드
- lol api dart
- com.google.GIDSignIn
- PlatformException(sign_in_failed
- AnimationController
- dart
- leetcode dart
- valorant api dart
- widget
- Architectural overview
- flutter statefulwidget
- swift concurrency
- flutter ios 폴더
- flutter android 폴더
Archives
- Today
- Total
목록flutter performance best practices (1)
aspe
Flutter - Performance best practices
Minimize expensive operations 몇몇 연산자들은 다른 연산자들보다 더 많은 리소스를 소모합니다. 앱의 UI를 어떻게 디자인하고 구현하는지가 얼마나 효율적으로 앱이 작동하는지 큰 영향을 줍니다. Control build() cost UI를 디자인 할 때 항상 생각해야할 것이 있습니다. 상위 위젯을 rebuild 할 때 해당 위젯의 build()가 자주 호출될 수 있으므로, build() 메소드에서 반복적이고 비용이 많이 드는 작업을 피하세요. 큰 build() 함수가 있는 지나치게 큰 단일 위젯을 만드는 것을 피하세요. 캡슐화뿐만 아니라 위젯들이 어떻게 변하는지에 따라 위젯을 다른 위젯들로 분할하세요. State 객체에서 setState()가 호출되면, 모든 하위 위젯들이 rebuil..
Flutter/번역
2023. 2. 17. 14:02