Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 안드로이드
- LifeCycle
- livedata
- activity
- data
- intent
- 앱
- Flutter
- CustomScrollView
- binding
- Compose
- Dialog
- appbar
- 테스트
- drift
- viewmodel
- Button
- DART
- 계측
- ScrollView
- android
- tabbar
- textview
- 앱바
- TEST
- textfield
- Kotlin
- Navigation
- scroll
- Coroutines
Archives
- Today
- Total
목록... (1)
Study Record

✍ Map() void main() { List fruit = ["사과", "바나나", "수박", "파인애플"]; final newfruit = fruit.map(x) { return '신선한 $x'; } // ("신선한 사과", "신선한 바나나", "신선한 수박", "신선한 파인애플") print(newfruit); final newfruit2 = newfruit.map((x) => "상한 $x"); // ("상한 사과", "상한 바나나", "상한 수박", "상한 파인애플") print(newfruit2); String number = "12345"; final parsed = number.split('').map((y) => '$y.png'); // ("1.png", "2.png", "3.png", ..
Dart
2023. 1. 15. 02:23