-
-
Save aleweichandt/fdb6b8914d130d15b149175a7372aea0 to your computer and use it in GitHub Desktop.
Loading Spinner
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
viewModelScope.launch { | |
getAllTodosUseCase(force) | |
.onStart { _refreshing.value = true } | |
.onCompletion { _refreshing.value = false } | |
.collect { response -> | |
(response as? Result.Success)?.let { _todos.value = it.result } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment