yang-f/flutter_svg_provider

Add support for loading from memory

Opened this issue · 1 comments

flutter_svg supports loading from memory like

SvgPicture.memory(
                     Base64Decoder().convert(
                     "BASE64STRING")
);

Please support this behaviour.

Hi @DennisMuchiri, You can use this:
Svg( '', svgGetter: (key) async { return Base64Decoder().convert("BASE64STRING"); } )