这是我解决这个问题的方法。感谢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")), ] ), ),
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)