Created
September 21, 2017 11:55
-
-
Save eastari/add608659bc0f47b14909054a3ced662 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
let isPhone = UIDevice.current.userInterfaceIdiom == .phone ? true : false | |
... | |
class RootRouter { | |
var panelScreen : PanelModuleInput? | |
func setupRouter(window: UIWindow) { | |
panelScreen = PanelAssembly.createModule() | |
panelScreen?.present(fromWindow: window) | |
} | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment