Skip to content

Instantly share code, notes, and snippets.

@SabagRonen
Last active July 7, 2018 09:19
Show Gist options
  • Save SabagRonen/55a9ff52866f099f326694ad166505ab to your computer and use it in GitHub Desktop.
Save SabagRonen/55a9ff52866f099f326694ad166505ab to your computer and use it in GitHub Desktop.
Android Jetpack Adoption At Gett post - defining MVP contract
public class SomeScreenContract {
public interface View {
void showProgressBar();
void hideProgressBar();
}
public interface IPresenter {
void startSomethingButtonClicked();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment