lottie-flutter
lottie-flutter copied to clipboard
Feature
Hello. Does it or may be could it be possible to set Lottie animation with a json String value coming from programming and not from json file ? Thank you. :)
Currently this is not really supported and you have to workaround by re-encodind your string into a list of byte:
var rawJsonString = '{"v":"5.1.16","fr":60...}';
var bytes = utf8.encode(rawJsonString);
LottieComposition.fromBytes(Uint8List.fromList(bytes));
Long term I would like to support this better.