Home > Enterprise >  Flutter: best filetype for animated images
Flutter: best filetype for animated images

Time:08-26

Id realy prefer not to use gifs because of their performance issues, is there a better filetype that can play an animated image without neading something like a video loader?

CodePudding user response:

you can try json filetype as it is light weight and it can reload fast

CodePudding user response:

You can use Lottie animations (json). Please check this link

https://pub.dev/packages/lottie

All you have to add it

Lottie.asset('assets/LottieLogo1.json'),

// Load a Lottie file from a remote url
Lottie.network('https://raw.githubusercontent.com/xvrh/lottie-flutter/master/example/assets/Mobilo/A.json'),

You can find animations from this link

https://lottiefiles.com

CodePudding user response:

you can use riv. file type from rive.

RiveAnimation.asset('assets/truck.riv');

rive for flutter, and here you can build your own animation

  • Related