Skip to content

Instantly share code, notes, and snippets.

@AkshayChordiya
Last active August 17, 2017 09:36
Show Gist options
  • Save AkshayChordiya/653460ae1734414e47d142bd06214dde to your computer and use it in GitHub Desktop.
Save AkshayChordiya/653460ae1734414e47d142bd06214dde to your computer and use it in GitHub Desktop.
User View Model with LiveData
class UserViewModel() : ViewModel() {
/**
* The user
*/
private var users: LiveData<List<User>>
init {
// Load the user over here
// users = ....
}
/**
* Get all the data
*/
fun getUsers() = users
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment