Flutter示例中的流布局

Flutter示例中的流布局,第1张

Flutter示例中的流布局

使用

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'),      ),  ],)


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5010697.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-14
下一篇 2022-11-14

发表评论

登录后才能评论

评论列表(0条)

保存