Grid Sliver Flutter
//Shohel Rana Shanto
SliverGrid(
delegate: SliverChildBuilderDelegate(
(context,index){
return Card(
color: Colors.green[100*(index%9+1)],
child: ListTile(title: Text("shohel$index"),),
);
},
childCount: 100,
),
gridDelegate: SliverGridDelegateWithFixedCrossAxisCount(crossAxisCount: 4),
),
Angry Alpaca