|
|
|
|
|
by lubonay
2211 days ago
|
|
MVI stands for Model-View-Intent.
It's a state management pattern that uses unidirectional flow.
Basically you send events (Intents, similar to Redux actions, not to be confused with the Android Intent class..) to your Model, which does a state update and sends out the updated state to the View. |
|