A dependency-injection / state propagation widget that allows passing multiple reactive signals down the Flutter widget tree.
This avoids the deeply nested trees that result from nesting multiple single SignalProvider widgets.
Constructors#
View Constructors
MultiSignalProvider({super.key, required this.providers, required this.child})
Exposes multiple SignalProvider widgets inside a flat list.
Properties#
View Properties
List providers
The list of single SignalProvider widgets to nest.
Widget child
The widget subtree that will have access to the provided signals.