Skip to content

The purpose of this project series is to teach different architectures with different structures, and you can check these architectures and structures.

License

Notifications You must be signed in to change notification settings

ezatpanah/MVI-Architecture-SimpleTaskApp

Repository files navigation

SimpleTaskApp using MVI Architecture

  • User does an action which will be an Intent → Intent is a state which is an input to model → Model stores state and send the requested state to the View → View Loads the state from Model → Displays to the user.
  • If we observe, the data will always flow from the user and end with the user through intent.
  • It cannot be the other way, Hence its called Unidirectional architecture. If the user does one more action the same cycle is repeated, hence it is Cyclic.

Overview

  • The purpose of this series is to teach different architectures with different structures, and you can check these architectures and structures in the same App.
  • Coming soon on AndroidGeek Channel

This project is in

  • MVP architecture [Room Database - RxJava - Dagger Hilt - Lottie - View Binding]
  • MVVM architecture [Room Database - LiveData - Flow - Coroutines - Dagger Hilt - ViewModel - Lottie - View Binding]
  • MVI architecture : Current Repo

Technologies and Libraries Used

  • Room Database
  • Flow
  • StateFlow
  • Dagger Hilt
  • Coroutines
  • Lottie
  • View Binding