flutter SliverList
//Shohel Rana Shanto
SliverList(
delegate: SliverChildBuilderDelegate(
(context,index){
return Card(
color: Colors.pink[100*(index%9+1)],
child: ListTile(title: Text('Sona$index'),),
);
},
childCount: 100,
)),