Skip to content

Instantly share code, notes, and snippets.

@jraska
Last active March 19, 2020 21:07
Show Gist options
  • Save jraska/608cfae8a0456c5d49be6ff699ca0a02 to your computer and use it in GitHub Desktop.
Save jraska/608cfae8a0456c5d49be6ff699ca0a02 to your computer and use it in GitHub Desktop.
class UsersViewModel(val navigator: Navigator) : ViewModel {
fun onUserClicked(user: User) {
// Business logic, analytics, any other compex interactions
navigator.startUserDetail(user.login)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment