animate library
Classes
- Animate
-
The Flutter Animate library makes adding beautiful animated effects to your widgets
simple. It supports both a declarative and chained API. The latter is exposed
via the
Widget.animate
extension, which simply wraps the widget inAnimate
.
Extensions
- AnimateWidgetExtensions on Widget
-
Wraps the target Widget in an Animate instance. Ex.
myWidget.animate()
is equivalent toAnimate(child: myWidget)
.
Typedefs
- AnimateCallback = void Function(AnimationController controller)
- Function signature for Animate callbacks.
- ReparentChildBuilder = Widget Function(Widget parent, Widget child)
- The builder type used by Animate.reparentTypes. It must accept an existing parent widget, and rebuild it with the provided child. In effect, it clones the provided parent widget with the new child.