Skip to content

Instantly share code, notes, and snippets.

@1jGabriel
Created July 19, 2020 15:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 1jGabriel/7b534e3d64f8f6a8ef02c8aa6de8d422 to your computer and use it in GitHub Desktop.
Save 1jGabriel/7b534e3d64f8f6a8ef02c8aa6de8d422 to your computer and use it in GitHub Desktop.
Obter dados do ViewModel
fun getData() {
lifecycleScope.launch {
viewModel.getItems().collectLatest {
adapter.submitData(it)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment