I wrote an Android app using MVVM
where I am calling webservice
from ViewModel and storing results in RoomDB. In the View I am observing ViewModel for live data.
I need to show ProgressDialog while fetching data from Webservice using Retrofit.
Where do I need to write code to display progressdialog
as I should not use userinterface
widgets in other architecture components except in View component?
Can anyone help me how to handle this scenario?
Thanks in Advance.