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
- 코드품앗이
- DFS와BFS
- vuejs
- Flutter
- android
- cos
- 분할정복
- issue
- django
- AndroidStudio
- 파이썬
- 코테
- cos pro 1급
- codingtest
- Vue
- cos pro
- 동적계획법과최단거리역추적
- DART
- 안드로이드
- Algorithm
- 동적계획법
- 개발
- BAEKJOON
- 코딩테스트
- Python
- 백준
- DFS
- 알고리즘
- C++
- 안드로이드스튜디오
Archives
- Today
- Total
목록iterable list (1)
Development Artist
[Flutter, Issue] The argument type 'Iterable<Widget>' can't be assigned to the parameter type 'List<Widget>'.
이슈 1. 플러터 인프런 강의 중, 넷플릭스 UI 만들기가 있는데, 10강에서 검색 스크린을 만드는 과정이였다. 2. 다음과 같이 searchResults.map((data) => _buildListItem(context, data)), 에서 이슈 발생. 탐색기에서는 아래의 그림과 같이 이유를 제시했다. 해결 1. searchResults.map((data) => _buildListItem(context, data)) 뒤에 .toList()를 붙여준다. 원인 1. 일단 flutter dart 언어에 있는 Iterable 개념을 알아야 한다. Iterable이란, A collection of values, or "elements", that can be accessed sequentially. ( 순차적으..
TroubleShooting/Flutter Issue
2022. 1. 16. 15:18