Skip to content

Instantly share code, notes, and snippets.

@gastsail
Created December 21, 2019 15:15
Show Gist options
  • Save gastsail/71939660fea07fb07726f5dba690bd99 to your computer and use it in GitHub Desktop.
Save gastsail/71939660fea07fb07726f5dba690bd99 to your computer and use it in GitHub Desktop.
fun fetchEventData():LiveData<MutableList<Event>>{
val mutableData = MutableLiveData<MutableList<Event>>()
repo.getEventsDB().observeForever { eventList ->
mutableData.value = eventList
}
return mutableData
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment