Skip to content

Instantly share code, notes, and snippets.

@Dzendo
Created June 19, 2021 18:27
Show Gist options
  • Save Dzendo/ef2167d1572f5fb6af95d6700c879cce to your computer and use it in GitHub Desktop.
Save Dzendo/ef2167d1572f5fb6af95d6700c879cce to your computer and use it in GitHub Desktop.
Create Event onClick
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