solid_x 1.0.0
solid_x: ^1.0.0 copied to clipboard
A lightweight, reactive state management library for Flutter. Inspired by SolidJS signals – fine-grained reactivity without code generation.
2.0.0 #
- Major Redesign: Solid is now a StateFlow/ViewModel pattern library.
- Added:
SolidViewModel<S>– single-state ViewModel base class withemit(S). - Added:
SolidConsumer<T>– combinesSolidBuilderandSolidListenerin one widget. - Removed: Granular state management (
SolidState,Mutation,Solidbase class). - Simplified: The widget API (
SolidProvider,SolidBuilder,SolidListener) now supports anyChangeNotifier. - Updated: Added
context.solid<T>()extension for easy ViewModel lookup.
1.0.0 #
- Initial release.
- Granular state management with
SolidState<T>andMutation<T>. Solidabstract base class with auto-disposal.- 8 widget variants for state and mutations.