flutter Column 中包含ListView高度设置问题

Posted azhe35

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了flutter Column 中包含ListView高度设置问题相关的知识,希望对你有一定的参考价值。

Column(children: <Widget>[
Text(“测试”),
Container(
width: ScreenUtil().setWidth(570),
// height: ScreenUtil().setHeight(800),
child: ListView.builder(
scrollDirection: Axis.vertical,
itemBuilder:
(context,index){

return _getListItem(index);
},
itemCount: list.length,

),
),
],)
以上代码中  height如果不设置 界面显示会有问题,如果要设置,又不能准确的计算出结果;下面有个方法可用解决这个问题,

Expanded在外层包裹就可用解决这个问题,如下
Column(children: <Widget>[
Text(“测试”),
Expanded(child: Container(
width: ScreenUtil().setWidth(570),
child: ListView.builder(
scrollDirection: Axis.vertical,
itemBuilder:
(context,index){

return _getListItem(index);
},
itemCount: list.length,

),
)),
],)
 
————————————————
版权声明:本文为CSDN博主「大蛇2」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/dalong3976/article/details/88782458

以上是关于flutter Column 中包含ListView高度设置问题的主要内容,如果未能解决你的问题,请参考以下文章

Flutter 在应用程序购买中我应该在 _verifyPurchase() 中包含啥

Flutter中包含GridViews和ListViews的ListView

Flutter 错误:VM 快照无效,无法从设置中推断。 - 当想要在 android 项目中包含 Flutter 模块时

Flutter:在框架模块“firebase_core.FLTFirebasePlugin”中包含非模块化标头

获取结构中包含此字段的所有表和视图

Flutter:我们检测到您的应用在您的 1 个或多个 app bundle 或 APK 的清单文件中包含 requestLegacyExternalStorage 标志