view_model_x 0.2.0
view_model_x: ^0.2.0 copied to clipboard
An Android similar state management package (StateFlow and SharedFlow with ViewModel) which helps to implement MVVM pattern easily.
View Model X #
An Android similar state management package which helps to implement MVVM pattern easily.
Note: In Android, ViewModel have an special functionality of keeping the state on configuration change. The ViewModel of this package is not for that as Flutter Project doesn't need it. It is only for separating the View Logic from UI.
Features #
- Simplified βΊοΈ State Management
- Similar code pattern with an Android project π°
- Easy for developers to migrate π©οΈ from Android to Flutter
- Allows developer to work with both Android to Flutter projects with ease π₯
- Easy to implement MVVM pattern πͺ
Package Components #
- StateFlow, MutableStateFlow (equivalent to LiveData) β΅
- SharedFlow, MutableSharedFlow π
- ViewModel (to separate the view logic from UI like Cubit)
- ViewModelProvider
- StateFlowBuilder
- StateFlowConsumer
- StateFlowListener
- SharedFlowListener
Usage #
my_view_model.dart #
class CounterViewModel extends ViewModel {
// initialize StateFlow
final _counterStateFlow = MutableStateFlow<int>(1);
StateFlow<int> get counterStateFlow => _counterStateFlow;
void increment() {
// by changing the value, listeners were notified
_counterStateFlow.value = _counterStateFlow.value + 1;
}
@override
void dispose() {
// must dispose all flows
_counterStateFlow.dispose();
}
}
counter_page.dart #
class CounterPage extends StatelessWidget {
const CounterPage({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
// wrap the content with your custom ViewModel
return ViewModelProvider(
create: (context) => CounterViewModel(),
child: const CounterPageContent(),
);
}
}
counter_page_content.dart #
Any widget nested inside ViewModelProvider
class CounterPageContent extends StatelessWidget {
const CounterPageContent({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: const Text('ViewModel Counter Example')),
body: Center(
// implement StateFlowBuilder to rebuild Text on StateFlow value changed/updated
child: StateFlowBuilder(
// pass your StateFlow
stateFlow: context.vm<CounterViewModel>().counterStateFlow,
builder: (context, value) {
return Text("$value", style: const TextStyle(fontSize: 30));
},
),
),
floatingActionButton: FloatingActionButton(
onPressed: () {
// call the increment function which is inside MyViewModel
ViewModelProvider.of<CounterViewModel>(context).increment();
},
child: const Icon(Icons.add),
),
);
}
}
Package Components #
ViewModel (Create custom ViewModel class) #
Create your custom View-Model which must extends ViewModel. Declare all your Flows and View related logic inside of it.
Don't forget to dispose all flows inside dispose method of ViewModel.
class CustomViewModel extends ViewModel {
// initialize StateFlow
final _myStateFlow = MutableStateFlow<int>(1);
StateFlow<int> get myStateFlow => _myStateFlow;
// view related logic here
@override
void dispose() {
// must dispose all flows
_myStateFlow.dispose();
}
}
MutableStateFlow and StateFlow #
MutableStateFlow is inherited from StateFlow. It stores value and notify listeners whenever it changes. It can change/update the value.
It is recommended to initialize private
MutableStateFlowand create a publicStateFlowgetter of it.
final _myStateFlow = MutableStateFlow<int>(1);
StateFlow<int> get myStateFlow => _myStateFlow;
To change the value
_myStateFlow.value = 5; // listeners were automatically notified
To update the value
_listStateFlow.update((value) {
value.add(obj);
}); // listeners were automatically notified
MutableSharedFlow and SharedFlow #
MutableSharedFlow is inherited from SharedFlow. It is used to send data to the listeners. It can emit the value.
It is recommended to initialize private
MutableSharedFlowand create a publicSharedFlowgetter of it.
final _mySharedFlow = MutableSharedFlow<String>();
SharedFlow<int> get mySharedFlow => _mySharedFlow;
To emit the value
_myStateFlow.emit("Hello from ViewModel!"); // listeners were automatically notified
ViewModel Flutter Widgets #
ViewModelProvider #
ViewModelProvider is used to wrap the widget with your custom ViewModel.
This requires create which accepts custom ViewModel and child Widget.
ViewModelProvider(
create: (context) => counterViewModel, // provide your custom viewModel
child: ChildWidget(),
);
Get ViewModel instance inside Widget Tree #
ViewModelProvider.of<CustomViewModel>(context)
OR
context.vm<CustomViewModel>()
StateFlowBuilder #
StateFlowBuilder is used to rebuild the widgets inside of it.
This requires stateFlow to listen on and builder to which rebuilds when the stateFlow's value changed/updated.
StateFlowBuilder(
stateFlow: context.vm<CustomViewModel>().myStateFlow, // pass StateFlow
builder: (context, value) {
return ChildWidget(value); // rebuild the widget with updated/changed value.
},
)
StateFlowConsumer #
StateFlowConsumer is used to rebuild the widgets inside of it and call the listener.
This requires stateFlow to listen on, builder and listener.
Whenever stateFlow's value changed/updated, builder will rebuild the widgets inside of it and listener will called.
StateFlowConsumer(
stateFlow: ViewModelProvider.of<CustomViewModel>(context).myStateFlow, // pass SharedFlow
listener: (context, value) {
// do stuff here based on value
},
builder: (context, value) {
return ChildWidget(value); // rebuild the widget with updated/changed value.
},
)
StateFlowListener #
StateFlowListener is used to catch the change/update value event of a stateFlow.
This requires stateFlow, listener and child.
Whenever stateFlow's value changed/updated, listener will called.
StateFlowListener(
stateFlow: ViewModelProvider.of<CustomViewModel>(context).myStateFlow, // pass StateFlow
listener: (context, value) {
// do stuff here based on value
},
child: ChildWidget(),
)
SharedFlowListener #
SharedFlowListener is used to catch the emitted value from sharedFlow.
This requires sharedFlow, listener and child.
Whenever sharedFlow emits a value, listener will called.
SharedFlowListener(
sharedFlow: ViewModelProvider.of<CustomViewModel>(context).mySharedFlow, // pass SharedFlow
listener: (context, value) {
// do stuff here based on value
},
child: ChildWidget(),
)
Coming soon #
- MultiViewModelProvider
- MultiFlowListener
Contributing #
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.