Skip to content

Instantly share code, notes, and snippets.

@SabagRonen
Last active December 21, 2017 21:04
Show Gist options
  • Save SabagRonen/308bebedb60c1966cef373763fc180b7 to your computer and use it in GitHub Desktop.
Save SabagRonen/308bebedb60c1966cef373763fc180b7 to your computer and use it in GitHub Desktop.
dagger android injector post contract between the view and the presenter
interface MainContract {
interface View {
fun showClickText()
}
interface UserAction {
fun createTopic(view: View)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment