gpt4 book ai didi

dart - 列 mainAxisSize : MainAxisSize. 分钟不工作

转载 作者:IT王子 更新时间:2023-10-29 07:04:43 24 4
gpt4 key购买 nike

所以我在水平 ListView 中显示一些卡片,问题是,我无法控制卡片的高度。

我已经尝试使用 mainAxisSize: MainAxisSize.min 但没有任何反应。

list.add(Card(
child: Column(
mainAxisSize: MainAxisSize.min,
mainAxisAlignment: MainAxisAlignment.end,
crossAxisAlignment: CrossAxisAlignment.start,
textDirection: TextDirection.ltr,
children: <Widget>[
Text("Some text"),
],
),
));

这就是我得到的。

enter image description here

最佳答案

向您的 ListView 小部件添加高度限制,如下所示:

SizedBox(
height: 100.0,
child: ListView.builder(
...

您还可以将项目居中:

        Center(
child: SizedBox(
height: 100.0,
child: ListView.builder(
...

关于dart - 列 mainAxisSize : MainAxisSize. 分钟不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54336256/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com