Skip to content

Instantly share code, notes, and snippets.

@putrarifin
Created December 4, 2020 17:54
Show Gist options
  • Save putrarifin/d9bc5f9dadd681add6b325b74928a998 to your computer and use it in GitHub Desktop.
Save putrarifin/d9bc5f9dadd681add6b325b74928a998 to your computer and use it in GitHub Desktop.
private fun initCountObserver() {
lifecycleScope.launch {
viewModel.countState.collect { value ->
textview_count.text = "$value"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment