Tag Archives: Reactive

Building Reactive Android UI with ViewModel and LiveData -Part 1 | by Abhishek singh | Jan, 2025

Building Reactive Android UI with ViewModel and LiveData -Part 1 | by Abhishek singh | Jan, 2025

The ViewModel class is designed to store and manage UI-related data in a lifecycle-conscious way. It allows data to survive configuration changes like screen rotations, ensuring your app doesn’t need to reload data unnecessarily. LiveData is an observable data holder class that respects the lifecycle of its observers. It ensures that UI components only observe changes when they are in …

Read More »