dnfield / lottie-flutter

A pure Dart/Flutter implementation of Lottie
Apache License 2.0
115 stars 24 forks source link

Dispose the animation controller only if it is created by Lottie itself #16

Closed sroddy closed 5 years ago

sroddy commented 5 years ago

The Animation controller should be disposed by the widget that creates it. This PR ensures to avoid disposing it if it is passed from an outer widget and not automatically created/managed by the Lottie widget itself

dnfield commented 5 years ago

Thanks!