Animation and Motion Widgets
Bring animations to your app. Check out Animations in Flutter for an overview.
See more widgets in the Flutter widget catalog.
- 
             AnimatedContainerA container that gradually changes its values over a period of time. 
- 
             AnimatedCrossFadeA widget that cross-fades between two given children and animates itself between their sizes. 
- 
             AnimatedBuilderA general-purpose widget for building animations. AnimatedBuilder is useful for more complex widgets that wish to include an animation as part of a larger build function. To use AnimatedBuilder, simply construct the widget and pass it a builder function. 
- 
             DecoratedBoxTransitionAnimated version of a DecoratedBox that animates the different properties of its Decoration. 
- 
             PositionedTransitionAnimated version of Positioned which takes a specific Animation to transition the child's position from a start position to and end position over the lifetime of the animation. 
- 
             AnimatedDefaultTextStyleAnimated version of DefaultTextStyle which automatically transitions the default text style (the text style to apply to descendant Text widgets without explicit style) over a given duration whenever the given style changes. 
- 
             AnimatedListStateThe state for a scrolling container that animates items when they are inserted or removed. 
- 
             AnimatedModalBarrierA widget that prevents the user from interacting with widgets behind itself. 
- 
             AnimatedOpacityAnimated version of Opacity which automatically transitions the child's opacity over a given duration whenever the given opacity changes. 
- 
             AnimatedPositionedAnimated version of Positioned which automatically transitions the child's position over a given duration whenever the given position changes. 
- 
             AnimatedSizeAnimated widget that automatically transitions its size over a given duration whenever the given child's size changes. 
See more widgets in the Flutter widget catalog.
