我想要keepAlive
已经在ListView
. 我尝试了按类addAutomaticKeepAlives:true
提供的属性。ListView
这是我使用的示例代码。SliverChildBuilderDelegate
由提供的委托中的相同问题SliverList
。
ListView.builder(
itemBuilder: (context,index){
return Card(
child: Container(
child: Image.asset("images/${index+1}.jpg",fit: BoxFit.cover,),
height: 250.0,
),
);
},
addAutomaticKeepAlives: true,
itemCount:40 ,
);