Flutter:如何在列表视图中的行之间删除 space
Flutter : How to remove space between row in Listview
我只是在做一些 flutter 的演示,我喜欢这样做,在列表视图中,我无法找到如何 在行之间删除 space
我的代码很简单,这个是我 return 我布局的小部件
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 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: () { /* ... */ },
),
],
),
),
],
),
)
);
}
帮帮我。
卡片之间的空格来自 getRow() 方法。
只需更新您的
new Padding(padding: new EdgeInsets.all(10.0),
到
new Padding(padding: new EdgeInsets.all(1.0),
看看变化。
如果不想中间有空格,可以直接return Card();
我只是在做一些 flutter 的演示,我喜欢这样做,在列表视图中,我无法找到如何 在行之间删除 space
我的代码很简单,这个是我 return 我布局的小部件
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 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: () { /* ... */ },
),
],
),
),
],
),
)
);
}
帮帮我。
卡片之间的空格来自 getRow() 方法。
只需更新您的
new Padding(padding: new EdgeInsets.all(10.0),
到
new Padding(padding: new EdgeInsets.all(1.0),
看看变化。
如果不想中间有空格,可以直接return Card();