Created
June 19, 2021 18:27
-
-
Save Dzendo/ef2167d1572f5fb6af95d6700c879cce to your computer and use it in GitHub Desktop.
Create Event onClick
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
private val _starClicked = MutableLiveData<Event<String?>>() | |
val starClicked: LiveData<Event<String?>> | |
get() = _starClicked | |
fun onStarClick() { | |
_starClicked.value = Event("on Star ONCE Clicked") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment