Flutter:如何将标题行添加到ListView

Flutter:如何将标题行添加到ListView,第1张

Flutter:如何将标题添加到ListView

这是我解决这个问题的方法。感谢najeira让我考虑其他解决方案。

在第一个正文列中,我的标头使用了与标题相同的布局

ListTile

因为

ListTil
在这种情况下,我的数据e包含a
CircleAvatar
,所以所有的水平间距都略微有点…
CircleAvatar
呈现的5列…然后是4个均匀间隔的列。

所以…我添加了一个

ListTile
到第一主体
Column
,一个
CircleAvatar
具有
backgroundColor
透明的,然后
Row
我4个标题。

        ListTile(        onTap: null,        leading: CircleAvatar(          backgroundColor: Colors.transparent,        ),        title: Row( children: <Widget>[   Expanded(child: Text("First Name")),   Expanded(child: Text("Last Name")),   Expanded(child: Text("City")),   Expanded(child: Text("Id")), ]        ),      ),



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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存