Open DennisMuchiri opened 2 years ago
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"); } )
Svg( '', svgGetter: (key) async { return Base64Decoder().convert("BASE64STRING"); } )
flutter_svg supports loading from memory like
Please support this behaviour.