Skip to content

Instantly share code, notes, and snippets.

@mlykotom
Last active January 3, 2020 09:45
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 mlykotom/63489b8cf1e9ef352377ae2e19dfe54c to your computer and use it in GitHub Desktop.
Save mlykotom/63489b8cf1e9ef352377ae2e19dfe54c to your computer and use it in GitHub Desktop.
Connecting The Dots :: Pure SavedState - ViewModel body simple
class SomeViewModel(/* ..ommited.. */){
val counter = savedStateHandle.getLiveData("counter", 0)
fun onPlusClick() {
counter.value = (counter.value ?: 0) + 1
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment