Created
February 19, 2020 14:34
-
-
Save fluxtah/a2ca6be8458edfbd566e9b2eee6e1d8a 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 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