You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We had a logic to show and hide the loading progress in BaseViewModel automatically. It was made to control showing and hiding the loading progress automatically for parallel tasks, such as parallel API calls at the screen loading time. Unfortunately, the current logic does not work stably, and it can not hide the loading when two of the tasks are finished at the same time.
👉 The loading progress continues to display progress even after all parallel tasks have completed
Issue
We had a logic to show and hide the loading progress in
BaseViewModel
automatically. It was made to control showing and hiding the loading progress automatically for parallel tasks, such as parallel API calls at the screen loading time. Unfortunately, the current logic does not work stably, andit can not hide the loading when two of the tasks are finished at the same time
.👉 The loading progress continues to display progress even after all parallel tasks have completed
Expected
The loading progress should be hidden once all API calls have been completed, regardless of whether they were
successful
orfailed
.Steps to reproduce
isLoading
StateFlow.The text was updated successfully, but these errors were encountered: