AnimatedWidgets icon indicating copy to clipboard operation
AnimatedWidgets copied to clipboard

Easily add animations on your screen with AnimatedWidgets. Made for Bloc pattern

Results 7 AnimatedWidgets issues
Sort by recently updated
recently updated
newest added

animationFinished callback in your code is ``` ..addStatusListener((status) { if (widget.animationFinished != null) { widget.animationFinished!(widget.enabled); } }); ``` and it should be: ``` ..addStatusListener((status) { if (status == AnimationStatus.completed) {...

I'm using `CustomAnimatedWidget`. However, sometimes a frame-drop occurs and the app throws an exception saying that the `AnimationController` methods should not be used after calling dispose. The error originates in...

i had use this widget on flutter web flutter doctor : ``` Doctor summary (to see all details, run flutter doctor -v): [√] Flutter (Channel stable, 2.2.3, on Microsoft Windows...

I wanted to use reverse duration and curve for our project, but wasn't available, so I made them available :)

Any plans to move to null safety?

I think it will be useful if we can change the center origin of the widget when using Scale and Rotate Animation. Thank you