Skip to content

Instantly share code, notes, and snippets.

@Shivamdhuria
Last active November 18, 2020 18:02
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 Shivamdhuria/5d1e4fce57df4566266a71819a930f73 to your computer and use it in GitHub Desktop.
Save Shivamdhuria/5d1e4fce57df4566266a71819a930f73 to your computer and use it in GitHub Desktop.
private fun collectFlow() {
lifecycleScope.launch {
viewModel.isSubmitEnabled.collect { value ->
submit_button.isEnabled = value
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment