stateful_widget_binder 1.0.2
stateful_widget_binder: ^1.0.2 copied to clipboard
A lightweight, type-safe Flutter package to bind controllers to StatefulWidget with automatic lifecycle management and reactivity.
1.0.2 #
- Fixed missing
disposable_controller.dartexport from package main entry point. - Fixed missing
flutter/material.dartimports in example and tests. - Improved library robustness with more accurate tests and error-free builds.
1.0.1 #
- Refined
StateControllergeneric constraints for better compile-time safety. - Cleaner internal access to
StatefulWidgetBinderprivate fields. - Added support for pure
DisposableController(non-reactive use cases). - Flexible
DisposableControlleras an abstract class (supports both extend and implement). - Added comprehensive unit tests for
DisposableController.
1.0.0 #
- Initial release of the StatefulWidget Binder library.
- Added
StatefulWidgetBinderbase class for widgets. - Added
StateControllergeneric class for type-safe state and controller management. - Added automatic reactivity for
Listenablecontrollers. - Added automatic lifecycle management with
dispose()automation. - Included comprehensive documentation and example project.