<Loading spinner not working correctly in next scr...
# stackoverflow
u
Loading spinner not working correctly in next screen in jetpack compose I am new in Compose Navigation. I have Button and when I clicked, I called the function in Viewmodel and trigger loading event with using StateFlow. So I called the next screen through navigation and calling loading spinner. I used delay(5000) to show spinner more before getting data but spinner is loading after the data is loaded. Can someone guide me. MainActivityViewModel.kt class MainActivityViewModel(private val resultRepository: ResultRepository) : ViewModel() { val...