get_animations/index library
Classes
- BlurAnimation
-
Animation that applies a backdrop blur filter from
begintoendsigma. - BounceAnimation
- Animation that applies a bouncing scale effect to a widget.
- ColorAnimation
- Animation that transitions the color filter of a widget between two colors.
- FadeInAnimation
- Animation that fades in a widget by transitioning its opacity from 0.0 to 1.0.
- FadeOutAnimation
- Animation that fades out a widget by transitioning its opacity from 1.0 to 0.0.
- FlipAnimation
-
Animation that flips a widget around its Y-axis from
begintoendphase. -
GetAnimatedBuilder<
T> - A widget that animates a tween value over a duration after a specified delay.
-
GetAnimatedBuilderState<
T> - The state for GetAnimatedBuilder managing the animation lifecycle.
- OpacityAnimation
- Base class for opacity-based animations.
- RotateAnimation
-
Animation that rotates a widget from
begintoendangle in radians. - ScaleAnimation
-
Animation that scales a widget from
begintoendscale factor. - SizeAnimation
-
Animation that transitions a widget's size/scale from
begintoend. - SlideAnimation
- Base slide animation class that shifts a widget position using OffsetBuilder.
- SlideInDownAnimation
- Slide animation that enters the child widget from the top downward.
- SlideInLeftAnimation
- Slide animation that enters the child widget from the left of the screen.
- SlideInRightAnimation
- Slide animation that enters the child widget from the right of the screen.
- SlideInUpAnimation
- Slide animation that enters the child widget from the bottom upward.
- SpinAnimation
- Animation that spins a widget 360 degrees.
- WaveAnimation
- Animation that moves a widget up and down in a wave motion on the Y-axis.
- WobbleAnimation
- Animation that wobbles a widget with a perspective rotation Z.
Extensions
- AnimationExtension on Widget
- Extension to easily chain animation builders onto any Widget.
Typedefs
- OffsetBuilder = Offset Function(BuildContext, double)
- Signature for a builder function that determines the slide Offset based on value.