close

DEV Community

Cover image for Runtime Animating SVGs in Flutter[native] Without Rive or Lottie
Denis Nadey
Denis Nadey

Posted on

Runtime Animating SVGs in Flutter[native] Without Rive or Lottie

I kept running into the same problem:
SVGs that animate in the browser become static in Flutter.

So I built full_svg_flutter for the specific case where SVG itself is the source asset and I donโ€™t want to rebuild or convert it.

What it focuses on:

  • FSvgPicture that auto-detects static vs animated SVG
  • a drop-in SvgPicture migration path for flutter_svg
  • optional playback control via AnimatedSvgController

This is not meant to replace Lottie, Rive, or animated WebP when those fit the pipeline. Itโ€™s for cases where an existing SVG should stay an SVG.

GitHub: https://github.com/denisnadey/flutter_full_svg_support
pub.dev: https://pub.dev/packages/full_svg_flutter
example:

Top comments (0)