Skip to content

Instantly share code, notes, and snippets.

@JoseAlcerreca
Created May 11, 2021 11:19
Show Gist options
  • Save JoseAlcerreca/307d32269fc44412078588d6f79ca572 to your computer and use it in GitHub Desktop.
Save JoseAlcerreca/307d32269fc44412078588d6f79ca572 to your computer and use it in GitHub Desktop.
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