RepeatingAnimationBuilder<T extends Object> constructor
- Key? key,
- required Animatable<
T> animatable, - required Duration duration,
- Curve curve = Curves.linear,
- RepeatMode repeatMode = RepeatMode.restart,
- bool paused = false,
- required ValueWidgetBuilder<
T> builder, - Widget? child,
Creates a widget that repeats an animation.
Implementation
const RepeatingAnimationBuilder({
super.key,
required this.animatable,
required this.duration,
this.curve = Curves.linear,
this.repeatMode = RepeatMode.restart,
this.paused = false,
required this.builder,
this.child,
});