Skip to content

Instantly share code, notes, and snippets.

@bdsaglam
Created September 23, 2019 07:16
Show Gist options
  • Save bdsaglam/5454d9e330d0c4b4fac18d591f93523a to your computer and use it in GitHub Desktop.
Save bdsaglam/5454d9e330d0c4b4fac18d591f93523a to your computer and use it in GitHub Desktop.
LiveData with explicit notify
// https://stackoverflow.com/a/52075248/6641096
fun <T> MutableLiveData<T>.notifyObserver() {
this.value = this.value
}
// Usage
fun addSomething(item: Item) {
listLiveData.value?.add(item)
listLiveData.notifyObserver()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment