Skip to content

Instantly share code, notes, and snippets.

@BapNesS
Created February 11, 2020 14:28
Show Gist options
  • Save BapNesS/b9ec14b9f55131f2d172078f514d7e72 to your computer and use it in GitHub Desktop.
Save BapNesS/b9ec14b9f55131f2d172078f514d7e72 to your computer and use it in GitHub Desktop.
Easy way to Toast with ViewModel, LiveData & a bit of abstraction. 4/4
class UsableViewModel : BaseViewModel() {
fun load() {
setMessage(R.string.data_loaded)
}
fun reset() {
setMessage(R.string.data_reset)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment