Skip to content

Instantly share code, notes, and snippets.

@fluxtah
Created April 2, 2020 15:05
Show Gist options
  • Save fluxtah/e26e7253eca20216505a9fa247a614e3 to your computer and use it in GitHub Desktop.
Save fluxtah/e26e7253eca20216505a9fa247a614e3 to your computer and use it in GitHub Desktop.
internal class HelloViewModel : ViewModel(), HelloModel {
val greeting: MutableLiveData<String> = MutableLiveData()
override fun loadGreeting() {
greeting.value = greetings.random()
}
}
private val greetings = listOf(
"Hello", "Yo!", "Big up!", "Greetings!", "Hiya!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment