AnimatedBuilder constructor
AnimatedBuilder({
- required Listenable animation,
- required Widget builder(
- BuildContext context,
- Widget? child
- Widget? child,
- Key? key,
Creates a widget that rebuilds when animation notifies.
Implementation
AnimatedBuilder({
required this.animation,
required this.builder,
this.child,
super.key,
});