Skip to content

Instantly share code, notes, and snippets.

@CostaFot
Last active January 18, 2020 23:50
Show Gist options
  • Save CostaFot/b6429b1b33576d91d300bad27e3c44f3 to your computer and use it in GitHub Desktop.
Save CostaFot/b6429b1b33576d91d300bad27e3c44f3 to your computer and use it in GitHub Desktop.
fun getRedditPost() {
viewModelScope.launch(Dispatchers.Main) {
stateData.value = State.Loading
val post: State.Post = redditRepository.getPost()
stateData.value = post
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment