码迷,mamicode.com
首页 > 其他好文 > 详细

GridView 列表组件 以及动态 GridView

时间:2020-02-19 20:43:01      阅读:87      评论:0      收藏:0      [点我收藏+]

标签:height   margin   通过   builder   ellipsis   lips   list   gate   widget   

 
 
技术图片

 

1、通过 GridView.builder 实现网格布局

Widget getList(context, index) {
return Container(
margin: EdgeInsets.fromLTRB(0, 0, 0, 10),
padding: EdgeInsets.all(10),
child: Column(
children: <Widget>[
Image.network(
listData[index][‘imageUrl‘],
fit: BoxFit.cover,
),
SizedBox(height: 5),
Text(
listData[index][‘title‘],
style: TextStyle(
fontSize: 14
),
overflow: TextOverflow.ellipsis,
)
],
),
decoration: BoxDecoration(
border: Border.all(
width: 1,
color: Colors.black12
)
),
);
}
Widget build(BuildContext context) {
// TODO: implement build
return Container(
padding: EdgeInsets.all(10),
child: GridView.builder(
gridDelegate: SliverGridDelegateWithFixedCrossAxisCount(
crossAxisCount: 2,
crossAxisSpacing: 10,
),
itemCount: listData.length,
itemBuilder: getList,
)
);
}

2、可以通过 GridView.count 实现网格布局

getList() {
var tempList = listData.map((val) {
return Container(
margin: EdgeInsets.fromLTRB(0, 0, 0, 10),
padding: EdgeInsets.all(10),
child: Column(
children: <Widget>[
Image.network(
val[‘imageUrl‘],
fit: BoxFit.cover,
),
SizedBox(height: 5),
Text(
val[‘title‘],
style: TextStyle(
fontSize: 14,
color: Colors.red
),
overflow: TextOverflow.ellipsis,
)
],
),
decoration: BoxDecoration(
border: Border.all(
width: 1,
color: Colors.black12
)
),
);
});
return tempList.toList();
}
Widget build(BuildContext context) {
// TODO: implement build
return GridView.count(
padding: EdgeInsets.all(10),
crossAxisCount: 2,
crossAxisSpacing: 10,
children: getList(),
);
}

GridView 列表组件 以及动态 GridView

标签:height   margin   通过   builder   ellipsis   lips   list   gate   widget   

原文地址:https://www.cnblogs.com/zhaofeis/p/12332928.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!