Created
May 11, 2021 11:19
-
-
Save JoseAlcerreca/307d32269fc44412078588d6f79ca572 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
class MyViewModel(...) : ViewModel() { | |
val result: LiveData<Result<UiState>> = liveData { | |
emit(Result.Loading) | |
emit(repository.fetchItem()) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment