Created
April 2, 2020 15:15
-
-
Save fluxtah/c9ef4d1befc9d83237234862d615091c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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