Skip to content

Instantly share code, notes, and snippets.

@qwert2603
Created January 20, 2021 17:22
Show Gist options
  • Save qwert2603/5569125abe96e78b3c302de0c566752f to your computer and use it in GitHub Desktop.
Save qwert2603/5569125abe96e78b3c302de0c566752f to your computer and use it in GitHub Desktop.
class SomeFragment {
private val vm = SomeViewModel()
fun onCreate() {
val currentValue: Int = vm.flow.value
// vm.flow.setValue(4) // compilation error
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment