I am not able to show a circular loading indicator or an image while flutter is loading the image from the network.
image: DecorationImage(
image: NetworkImage(
Juegos_de_siempre[index].url_foto,
),
fit: BoxFit.fill,
),
2
Answers
Flutter’s documentation suggested the usage of
FadeInImage
for the placeholder functionality. Here’s a link to an example on Flutter’s documentation.You cannot use
FadeInImage
inside aDecorationImage
, so you have to wrap it inside aStack
instead like shown in this thread.Use
CacheNetworkImage
Package.Click here.This is sample code.