Skip to content

Instantly share code, notes, and snippets.

@vchernyshov
Created March 15, 2020 20:52
Show Gist options
  • Save vchernyshov/cfd39b16b6e022188b97887f3f4c3351 to your computer and use it in GitHub Desktop.
Save vchernyshov/cfd39b16b6e022188b97887f3f4c3351 to your computer and use it in GitHub Desktop.
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