declare library
Classes
-
Declare<
T extends ViewModel> - A widget that binds a ViewModel to the widget tree and rebuilds the UI whenever any registered Prop within the ViewModel changes.
-
Prop<
T> - A Property wrapper around ValueNotifier to notify UI on value change.
- ViewModel
- A base class for view models. Can be extended to hold state and dispose resources.
Mixins
Typedefs
-
ViewModelBuilder<
T extends ViewModel> = Widget Function(BuildContext context, T viewModel) - A builder function that provides the BuildContext and an instance of ViewModel to build a reactive widget.