generated/arcane_shadcn/src/components/animation library
Classes
- 
  AnimatedValueBuilder<T> 
- A versatile animated widget that smoothly transitions between values.
- 
  AnimatedValueBuilderState<T> 
- CrossFadedTransition
- A widget that smoothly transitions between different child widgets.
- IntervalDuration
- A custom curve that creates time-based intervals within an animation duration.
- 
  RepeatedAnimationBuilder<T> 
- An animated widget that continuously repeats an animation between two values.
Enums
- RepeatMode
- Defines how a repeated animation should behave when it reaches completion.
Typedefs
- 
    AnimatedChildBuilder<T> = Widget Function(BuildContext context, T value, Widget? child) 
- A callback that builds a widget based on an animated value and optional child.
- 
    AnimatedChildValueBuilder<T> = Widget Function(BuildContext context, T oldValue, T newValue, double t, Widget? child) 
- A callback that builds a widget with raw animation progress information.
- 
    AnimationBuilder<T> = Widget Function(BuildContext context, Animation< T> animation)
- A callback that builds a widget based on an animation object.