我想在颤振中实现流布局我在 sdk 中找到了一个名为 FLOW 的类,但找不到有关如何使用它的示例代码
这是我想要实现的布局
使用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'),
),
],
)
在 Flutter wrap 中是用于创建像截图一样的布局的连线小部件
Wrap:它可以根据屏幕上可用的空间调整其子级。默认排列是水平的(如一行),但您可以使其垂直(如一列)。
芯片:此小部件用于创建标签或芯片
new Wrap(
spacing: 5.0, // horizontal gap between chips
runSpacing: 2.0, // gap between row
children: <Widget>[
new Chip(
label: new Text('One'),
),
new Chip(
label: new Text('Two'),
),
new Chip(
label: new Text('Three'),
),
new Chip(
label: new Text('Four'),
),
],
)