Answers for "flutter sliverlist reverse"

0

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,
           
         )),
Posted by: Guest on January-03-2022

Browse Popular Code Answers by Language