我正在做一些扑动的演示,我喜欢这样做,在listview中,我无法找到如何删除行之间的空格
我的代码很简单,这个是Widget,我回到我的布局
Widget _getWidget(BuildContext context) {
return new Material(
child: new Container(
padding: EdgeInsets.only(top: 20.0),
color: Colors.blueGrey[500],
child: new Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
_getHeader(context),
new Expanded(child: getListView())
],
),
),
);
}
这是Listview
ListView getListView() =>
new ListView.builder(
itemCount: widgets.length,
itemBuilder: (BuildContext context, int position) {
return getRow(position);
});
这是我使用卡片视图的行
Widget getRow(int i) {
return new Padding(padding: new EdgeInsets.all(10.0),
child: new Card(
child: new Column(
children: <Widget>[
new ListTile(
title: new Text(
"Name : ${widgets[i].username}"
),
subtitle: new Text(
"Decription : You may go now!!"
),
),
new ButtonTheme.bar(
child: new ButtonBar(
children: <Widget>[
new FlatButton(
child: const Text('Accept'),
onPressed: () { /* ... */ },
),
new FlatButton(
child: const Text('Reject'),
onPressed: () { /* ... */ },
),
],
),
),
],
),
)
);
}
帮助我。
答案 0 :(得分:2)
您在牌之间获得的空间来自 getRow()方法。
只需更新
即可new Padding(padding: new EdgeInsets.all(10.0),
到
new Padding(padding: new EdgeInsets.all(1.0),
并看到变化。
如果您不希望介于两者之间,可以直接返回Card();