I have a ListView
for load a list of images using advanced network image plugin like this:
@override
Widget build(BuildContext context) {
super.build(context);
return CachedNetworkImage(
imageUrl: parseURLImageFromService(productImageURL),
height: screen.width * ratio,
placeholder: Container(
alignment: AlignmentDirectional.center,
child: CircularProgressIndicator(
valueColor: AlwaysStoppedAnimation(
CompanyColors.green[500],
),
),
),
errorWidget: defaultLogoImage(screen, ratio),
width: screen.width * (ratio * 0.75),
);
}
}
But when i render the app, all image try to load at the same time, i would like to load the images ony by one waiting the previous.