gpt4 book ai didi

dart - Flutter 示例中的流布局

转载 作者:IT老高 更新时间:2023-10-28 12:36:32 27 4
gpt4 key购买 nike

我想在 Flutter 中实现流布局,我在 sdk 中找到了一个名为 FLOW 的类,但找不到有关如何使用它的示例代码

这是我想要实现的布局

enter image description here

最佳答案

使用 Wrap而不是 Flow

Flow 用于更复杂的自定义布局。 Wrap 是用来在你的截图中实现布局的。

Wrap(
spacing: 8.0, // gap between adjacent chips
runSpacing: 4.0, // gap between lines
children: <Widget>[
Chip(
avatar: CircleAvatar(backgroundColor: Colors.blue.shade900, child: Text('AH')),
label: Text('Hamilton'),
),
Chip(
avatar: CircleAvatar(backgroundColor: Colors.blue.shade900, child: Text('ML')),
label: Text('Lafayette'),
),
Chip(
avatar: CircleAvatar(backgroundColor: Colors.blue.shade900, child: Text('HM')),
label: Text('Mulligan'),
),
Chip(
avatar: CircleAvatar(backgroundColor: Colors.blue.shade900, child: Text('JL')),
label: Text('Laurens'),
),
],
)

关于dart - Flutter 示例中的流布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50096734/

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