Skip to content

Instantly share code, notes, and snippets.

@JoseAlcerreca
Created May 11, 2021 12:03
  • Star 5 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
onCreateView(...) {
viewLifecycleOwner.lifecycleScope.launch {
viewLifecycleOwner.lifecycle.repeatOnLifecycle(STARTED) {
myViewModel.myUiState.collect { ... }
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment