Skip to content

Instantly share code, notes, and snippets.

@Herakleis
Last active August 19, 2017 14:55
Show Gist options
  • Save Herakleis/5fc2b6f2f43b108db370d40cad6c8f42 to your computer and use it in GitHub Desktop.
Save Herakleis/5fc2b6f2f43b108db370d40cad6c8f42 to your computer and use it in GitHub Desktop.
Scene+Template
import Foundation
enum Scene {
// Sub-group of scenes related to each other
// E.g.: all scenes part of a login process
case firstScene(FirstSceneViewModel)
case secondScene(SecondSceneViewModel)
// Another sub-group of scenes related to each other
// An so on...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment