Notes on how the ViewModel architecture works in kotlin
Navigation inside an app based on Compose
ViewModel
is the Kotlin architecture practice for separating data from UILiveData
is the lifecycle aware way to let a UI class subscribe to changes to data in aViewModel
- Data Binding is the strategy that allows us to reference LiveData objects directly in our xml views to take shortcuts …
Notes from learning Flutter