Skip to content

Instantly share code, notes, and snippets.

@nhaarman
Created October 2, 2018 08:03
Show Gist options
  • Save nhaarman/52fff721722f5015a4c3eddab503900e to your computer and use it in GitHub Desktop.
Save nhaarman/52fff721722f5015a4c3eddab503900e to your computer and use it in GitHub Desktop.
interface Navigator {
fun addListener(listener: Events)
fun saveInstanceState() : SavedState
interface Events {
fun screen(screen: Screen<out Container)
fun finished()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment