Column(
mainAxisSize: MainAxisSize.min,
children: [
Container(
color: Colors.black,
width: double.infinity,
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: awards
.map((award) => Card(
elevation: 3,
surfaceTintColor: Colors.white,
child: Padding(
padding: const EdgeInsets.symmetric(
horizontal: 8, vertical: 16.0),
child: Column(
mainAxisSize: MainAxisSize.min,
// crossAxisAlignment: CrossAxisAlignment.stretch, <--- Why this guy is breaking ? logic ?
children: [
SizedBox(
// width: double.maxFinite, <--- So does this guy :(
child: OutlinedButton(
onPressed: () {}, child: const Text("Hello")),
)
],
),
),
))
.toList(),
),
),
],
));
我试图传播的按钮宽度卡内排,但没有工作.我甚至不明白它为什么会断裂,它说它在盒子约束中断裂,因为它有无限的宽度
2条答案
按热度按时间disbfnqx1#
您可以使用LayoutBuilder来获取每张卡片的最大宽度
ifmq2ha22#
给你我相信这就是你想要的。这是最小可行代码,50行以下。我希望能成功。欢迎在下面的评论中提供感谢。