Skip to content

Instantly share code, notes, and snippets.

@nhaarman
Created September 3, 2018 21:08
Show Gist options
  • Save nhaarman/9fe6465cca5c8a109ac9b94cc04e11a0 to your computer and use it in GitHub Desktop.
Save nhaarman/9fe6465cca5c8a109ac9b94cc04e11a0 to your computer and use it in GitHub Desktop.
A very simple contract for a screen in a mobile application.
interface Screen<V : Container> {
fun onStart() {}
fun attach(v: V) {}
fun detach(v: V) {}
fun onStop() {}
fun onDestroy() {}
fun saveInstanceState(): SavedState
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment