Skip to content

Instantly share code, notes, and snippets.

@alz-ahm
Created August 27, 2019 14:47
Show Gist options
  • Save alz-ahm/75298e25f4578e7e201a7e8385ede367 to your computer and use it in GitHub Desktop.
Save alz-ahm/75298e25f4578e7e201a7e8385ede367 to your computer and use it in GitHub Desktop.
class MyViewModel() : ViewModel(){
val networkError = MutableLiveData<String>()
}
//inside activity
viewModel.networkError.observe(this, Observer {
showToast(it)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment