728x90
반응형
Vertical viewport was given unbounded height 에러가 났을 때 처리
before
ListView(
children: restaurantModel.row_search_result.map((e) {
return RestaurantListTile(e);
}).toList(),
)
after
ListView(
scrollDirection: Axis.vertical,
shrinkWrap: true,
children: restaurantModel.row_search_result.map((e) {
return RestaurantListTile(e);
}).toList(),
)
listview 속성에 아래 코드를 추가해준다.
scrollDirection: Axis.vertical,
shrinkWrap: true,
728x90
반응형
'Flutter' 카테고리의 다른 글
[j Flutter] convex_bottom_bar 사용하기 (0) | 2020.10.28 |
---|---|
[j Flutter] BottomNavigationBar 바닥메뉴 / 네비게이션바 (0) | 2020.10.27 |
[j Flutter] GoogleMap 추가하기 (지도추가하기) (0) | 2020.10.22 |
[j Flutter] list 조건문 / 정렬하기 (0) | 2020.10.19 |
[j Flutter] 현재위치에서 특정장소까지 거리구하기 (0) | 2020.10.16 |