Releases: xvrh/lottie-flutter
Releases · xvrh/lottie-flutter
v1.0.1
v1.0.0
v0.8.0-nullsafety.4
- Fix compilation error with the Web platform
v0.8.0-nullsafety.3
- Add image to
LottieDelegates
- Fix
imageProviderFactory
to work with zip files
v0.8.0-nullsafety.2
- Remove print after load
v0.8.0-nullsafety.1
- Fix rendering bug with matte layers
v0.8.0-nullsafety.0
Migrate to null safety
v0.7.0+1
v0.7.0
v0.6.0
- Runs the animation at the frame rate specified in the json file (ie. An animation encoded with a 20 FPS will only be paint 20 times per seconds even though the AnimationController will invalidate the widget 60 times per seconds).
The newframeRate
property allows to opt-out this behaviour and have the widget to repaint at the device frame rate (FrameRate.max). - Automatically adds a RepaintBoundary around the widget. Since Lottie animations are generally complex to paint, a RepaintBoundary will separate the animation with the rest of the app and improve performance. A new property
addRepaintBoundary
allows to opt-out this behaviour. - Fixes a bug where we would call
markNeedPaint
when the animation was not changing. This removes unnecessary paints in animations with static periods.