Draw SVG files using Flutter.
This library consists of two packages: flutter_svg and flutter_svg_test .
flutter_svg
provides a wrapper around Dart implementations of SVG parsing,
including SVG path data. In particular, it provides efficient BytesLoader
implementations for package:vector_graphics
.
The package is easier to use but not as performant as using the
vector_graphics
and vector_graphics_compiler
packages directly. Those
packages allow you to do ahead-of-time compilation and optimization of SVGs,
and offer some more performant rasterization strategies at runtime.
flutter_svg_test
provides a set of functions to find images generated by flutter_svg
in widget tests.
- SMIL animations. That just seems crazy. I think it'll be possible to animate the SVG but probably in a more Flutter driven way.
- Interactivity/events in SVG.
- Any CSS support - preprocess your SVGs (perhaps with usvg or scour to get rid of all CSS?).
- Scripting in SVGs
- Foreign elements
- Rendering properties/hints
- vector_graphics which powers this package.
- Rive supports importing SVGs and animating vector graphics.
- FlutterShapeMaker supports converting SVGs to CustomPaint widgets.
- Jovial SVG supports a slightly different feature set and a fast binary format.