Skip to content

Instantly share code, notes, and snippets.

@fluxtah
Created April 2, 2020 15:15
Show Gist options
  • Save fluxtah/c9ef4d1befc9d83237234862d615091c to your computer and use it in GitHub Desktop.
Save fluxtah/c9ef4d1befc9d83237234862d615091c to your computer and use it in GitHub Desktop.
fun HelloPresenter.configure(lifecycle: Lifecycle, vm: HelloViewModel, view: HelloView) {
// action flows
view.onShowNewGreetingButtonPressed(::onShowNewGreetingButtonPressed)
// data flows
vm.greeting.observe({ lifecycle }, ::onGreetingLoaded)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment