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 | 31 |
Tags
- Compose
- 테스트
- activity
- Dialog
- intent
- binding
- 계측
- Kotlin
- 안드로이드
- tabbar
- data
- CustomScrollView
- viewmodel
- android
- appbar
- livedata
- textfield
- textview
- ScrollView
- 앱바
- DART
- Navigation
- Coroutines
- scroll
- TEST
- 앱
- drift
- Flutter
- LifeCycle
- Button
Archives
- Today
- Total
목록where 함수 (1)
Study Record
[Dart] 함수형 프로그래밍
✍ 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