📜  flutter SliverList - 任何代码示例

📅  最后修改于: 2022-03-11 15:00:38.510000             🧑  作者: Mango

代码示例1
//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,
           
         )),