Flutter
[Error] Vertical viewport was given unbounded height
Michelle Hwang
2021. 5. 20. 13:40
ListView(
children: [
Text(
'Explore Flights by Destination',
style: TextStyle(color: Colors.black, fontSize: 15),
),
ListTile(
leading: Image(image: AssetImage('images/bg1.jpeg'), width: 90,),
title: Text('Khumbu Valley, Nepal'),
subtitle: Text('Nonstop - 5h 16m+'),
minLeadingWidth: 100,
),
Divider(thickness: 2,),
)
Error 남.. ListView 에 scrollDirection과 shringWray넣어주면 에러 해결!
scrollDirection: Axis.vertical,
shrinkWrap: true,