SignalAnimatedBuilder constructor
const
SignalAnimatedBuilder({
- Key? key,
- required Widget builder(
- BuildContext context,
- Widget? child
- Widget? child,
- String? debugLabel,
- List<
ReadonlySignal> dependencies = const [],
Creates a SignalAnimatedBuilder widget.
The builder constructs the widget tree around the cached child.
The dependencies is an optional list of signals to watch explicitly.
Implementation
const SignalAnimatedBuilder({
super.key,
required this.builder,
this.child,
this.debugLabel,
this.dependencies = const [],
});