Quantcast
Channel: Active questions tagged listview - Stack Overflow
Viewing all articles
Browse latest Browse all 681

flutter ListView KeepAlive after some scroll

$
0
0

I want to keepAlive my widgets which are already rendered in ListView. I was tried with addAutomaticKeepAlives:true properties which provide by ListView class.

Here is my sample code which I was used. Same issue in SliverChildBuilderDelegate delegate which provide by 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 ,);

Viewing all articles
Browse latest Browse all 681

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>