I'm trying to work with cached images. I followed CachedNetworkImage but it doesn't work. Please help me if any other solution available in flutter
When I scrolled list from up to bottom or bottom to up the images are gone and reloaded again
Code
ClipRRect(
borderRadius: new BorderRadius.only(
topRight: Radius.circular(10.0),
topLeft: Radius.circular(10.0)),
child: CachedNetworkImage(
placeholder: (context, url) => Center(
child: CircularProgressIndicator(),),
imageUrl: productList[position]["images"]
["post_image1"],
height: 180,
width: MediaQuery.of(context).size.width,
fit: BoxFit.cover,
))