how to display animated gif in flutter?

Monu Kumar picture Monu Kumar · Jul 27, 2018 · Viewed 30.3k times · Source

I am trying to display gif in flutter.

I am using the code

Image(image : NetworkImage(message.image_url))

But it shows error:

Another exception was thrown: Exception: HTTP request failed, statusCode: 403, https://media.giphy.com/media/13AXYJh2jDt2IE/giphy.gif%20

Answer

Pritish picture Pritish · Jan 24, 2019

Place your gif in your images folder of your project and mention it in pubspec.yaml file,just like you do for images.

Image.asset(
  "images/loading.gif",
  height: 125.0,
  width: 125.0,
),