Skip to content

Instantly share code, notes, and snippets.

@burakiren
Created November 13, 2020 07:36
Show Gist options
  • Save burakiren/fd0b859dde0839fa443170a28b4e21fe to your computer and use it in GitHub Desktop.
Save burakiren/fd0b859dde0839fa443170a28b4e21fe to your computer and use it in GitHub Desktop.
MVI - ExampleView
interface ExampleView : MvpView {
/** * Emits button clicks as Observables */
fun showUserDataIntent(): Observable<Unit>
/** * Render the state in the UI */
fun render(state: ExampleViewState)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment