Created
February 11, 2020 14:28
-
-
Save BapNesS/b9ec14b9f55131f2d172078f514d7e72 to your computer and use it in GitHub Desktop.
Easy way to Toast with ViewModel, LiveData & a bit of abstraction. 4/4
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 UsableViewModel : BaseViewModel() { | |
fun load() { | |
setMessage(R.string.data_loaded) | |
} | |
fun reset() { | |
setMessage(R.string.data_reset) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment