Created
January 20, 2021 17:22
-
-
Save qwert2603/5569125abe96e78b3c302de0c566752f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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