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 |
Tags
- textfield
- TEST
- data
- 앱바
- 앱
- intent
- appbar
- activity
- Kotlin
- Button
- DART
- Flutter
- Coroutines
- 계측
- Dialog
- livedata
- Navigation
- scroll
- 테스트
- CustomScrollView
- binding
- drift
- textview
- viewmodel
- Compose
- LifeCycle
- ScrollView
- tabbar
- 안드로이드
- android
Archives
- Today
- Total
목록where 함수 (1)
Study Record
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/b1ko0K/btrWiseFIfV/ul6ZGVmtBaAzd95r1ybbeK/img.png)
✍ 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