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,
),
Flutter's documentation suggested the usage of
FadeInImagefor the placeholder functionality. Here's a link to an example on Flutter's documentation.You cannot use
FadeInImageinside aDecorationImage, so you have to wrap it inside aStackinstead like shown in this thread.