Skip to content

Instantly share code, notes, and snippets.

@fluxtah
Created February 19, 2020 14:34
Show Gist options
  • Save fluxtah/a2ca6be8458edfbd566e9b2eee6e1d8a to your computer and use it in GitHub Desktop.
Save fluxtah/a2ca6be8458edfbd566e9b2eee6e1d8a to your computer and use it in GitHub Desktop.
class MyViewModel : BaseViewModel() {
val _data = MutableLiveData<String>()
val data: LiveData<String>
get() = _data
fun load() {
_data.value = "Hello, World"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment