Created
August 27, 2019 14:47
-
-
Save alz-ahm/75298e25f4578e7e201a7e8385ede367 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() : 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