Flutter: RenderBox was not laid out

前端 未结 7 1012
清酒与你
清酒与你 2020-11-30 02:20

I\'m trying to create a ListView but when I import the list_form.dart class i get this error. Maybe I made some mistakes with the layout because if I try to run it inside th

7条回答
  •  -上瘾入骨i
    2020-11-30 02:42

    Placing your list view in a Flexible widget may also help,

    Flexible( fit: FlexFit.tight, child: _buildYourListWidget(..),)
    

提交回复
热议问题