Xavier H.
Xavier H.
Can you provide the json file and a program reproducing the behaviour? Thanks
Hi, Thanks for the interest in the library. Can you share with us the lottie file to help to debug? Normally the "key path" is the same as implemented in...
Hi, I quickly tried your animation. I dropped it in the lottiefiles.com player to find the layer's names: https://edit.lottiefiles.com/?src=https%3A%2F%2Fassets9.lottiefiles.com%2Fpackages%2Flf20_5ZclXb.json And with this code: ```dart LottieDelegates( values: [ for (var i...
You can use a "key path" like this: `['Layer 1 Outlines', 'Group 1', 'Fill 1']` I added more tests here: https://github.com/xvrh/lottie-flutter/pull/35/files
Hi, Thanks for the feature request. I've needed this feature too but it was a bit tricky to implement correctly so I put it aside for now. I may try...
Hi, Can you provide a lottie file to reproduce? Ideally with some screenshots of the good and bad behaviour. Thanks
Hi, This is a good feature request. There is still some work to do with cache management (pre-cache is on the list too). As of now, you have to import...
I think you are missing the `onLoaded` callback to configure the duration of the `AnimationController` ```dart Lottie.asset('assets/animations/share.json', controller: _controller, onLoaded: (composition) { _controller.duration = composition.duration; }, ) ```
What you are seeing is an optimisation in the library to not draw the composition if nothing has changed between 2 frames. https://github.com/xvrh/lottie-flutter/blob/master/lib/src/render_lottie.dart#L60 Your animation is static after 25% so...
1. Ok. It need to have a clear name, some documentation and a few unit tests to prevent regressions. 2. When you add `addRepaintBoundary: false`, a widget that continuously draw...