use Lottie Animations with flutter web HTML renderer

Viewed 174

is it possible to use Lottie Animation json file in flutter web while using HTML renderer?

I'm using Lottie package but not working for web.

1 Answers

As I just tripped on a problem using mobile browsers (see Flutter Web: Lottie Animation is cropped on Android Chrome, but Windows Chrome is okay ) my personal answer is yes+no:

As of Sep 2022: I you are building for desktop browsers only, Flutter's HTML renderer seems to be fine. If also mobile browsers, such as Chrome, shall be usable, HTML Renderer does not work cleanly for any lottie animation. Use canvaskit renderer in that case.

Related