Skip to content

Instantly share code, notes, and snippets.

@alz-ahm
Created March 15, 2019 12:58
Show Gist options
  • Save alz-ahm/9f0e037681fd29a62b7de966ae7923eb to your computer and use it in GitHub Desktop.
Save alz-ahm/9f0e037681fd29a62b7de966ae7923eb to your computer and use it in GitHub Desktop.
//without extension
liveData.value = liveData.value
//With extension
liveData.notifyObservers()
//Extension function
fun <T> MutableLiveData<T>.notifyObservers() {
value = value //resetting the value forces to notify observers
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment