Xavier H.
Xavier H.
Thanks for the reproduction. Can you review the differences between the 2 versions and try to isolate what make it break? ie. is this something when the json properties have...
> But it's JSON right? Who cares about the order of props :( It seems the parser do care about the order of the properties. Here: https://github.com/xvrh/lottie-flutter/blob/master/lib/src/parser/content_model_parser.dart#L24 the parser expect...
This is not easily fixable. And I think `Lottie-Android` has the same problem too. I think you should definitely store your lottie file as text or binary.
@design2be > This seems to be due to saving the screen size on app launch for this plugin which no longer updates. Yes, the parser relies on `window.devicePixelRatio` at several...
Thanks for the report. I tried this animation with Lottie-Android and I don't see the envelope either unfortunately. This library is based on the android code-base so if a feature...
Can you share the json file so I can have look?
Hi, Thanks for the report. The problem seems to exist also with the `Lottie-android` library (from which this library is a direct port). This warning is reported after loading the...
If I remember correctly, we decided to only add a single manufacturerData entry because iOS only support one via [CBAdvertisementDataManufacturerDataKey](https://developer.apple.com/documentation/corebluetooth/cbadvertisementdatamanufacturerdatakey) (but I can be proved wrong) Maybe we can modify...
If an animation is costly to draw, there is the possibility to draw all the frames in a `List` and keep them in memory. After the initial cache warmup, it's...
The next version `v3.0.0-alpha.1` has an experimental parameter `enableRenderCache` which is meant to make the rendering very cheap for the CPU in exchange of an increased memory usage. Give it...