Created
March 15, 2020 20:52
-
-
Save vchernyshov/cfd39b16b6e022188b97887f3f4c3351 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 MainViewModel : ViewModel() { | |
val state = State<String>(GlobalScope) | |
fun onCreate() { | |
state.value = "Hello" | |
} | |
fun newValue() { | |
state.value = "World" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment