├── .gitignore ├── CoordinatorPractice ├── CoordinatorPractice.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── CoordinatorPractice │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Coordinator │ │ ├── BuyCoordinator.swift │ │ ├── Coordinator.swift │ │ └── MainCoordinator.swift │ ├── CoordinatorPractice.xcdatamodeld │ │ ├── .xccurrentversion │ │ └── CoordinatorPractice.xcdatamodel │ │ │ └── contents │ ├── Info.plist │ ├── Storyboarded.swift │ └── ViewController │ │ ├── BuyViewController.swift │ │ ├── CreateAccountViewController.swift │ │ └── ViewController.swift ├── CoordinatorPracticeTests │ ├── CoordinatorPracticeTests.swift │ └── Info.plist └── CoordinatorPracticeUITests │ ├── CoordinatorPracticeUITests.swift │ └── Info.plist ├── Media └── coordinator_basic.gif └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-Lena/Coordinator/HEAD/.gitignore -------------------------------------------------------------------------------- /CoordinatorPractice/CoordinatorPractice.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-Lena/Coordinator/HEAD/CoordinatorPractice/CoordinatorPractice.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CoordinatorPractice/CoordinatorPractice.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-Lena/Coordinator/HEAD/CoordinatorPractice/CoordinatorPractice.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CoordinatorPractice/CoordinatorPractice.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-Lena/Coordinator/HEAD/CoordinatorPractice/CoordinatorPractice.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /CoordinatorPractice/CoordinatorPractice/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-Lena/Coordinator/HEAD/CoordinatorPractice/CoordinatorPractice/AppDelegate.swift -------------------------------------------------------------------------------- /CoordinatorPractice/CoordinatorPractice/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-Lena/Coordinator/HEAD/CoordinatorPractice/CoordinatorPractice/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /CoordinatorPractice/CoordinatorPractice/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-Lena/Coordinator/HEAD/CoordinatorPractice/CoordinatorPractice/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CoordinatorPractice/CoordinatorPractice/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-Lena/Coordinator/HEAD/CoordinatorPractice/CoordinatorPractice/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CoordinatorPractice/CoordinatorPractice/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-Lena/Coordinator/HEAD/CoordinatorPractice/CoordinatorPractice/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CoordinatorPractice/CoordinatorPractice/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-Lena/Coordinator/HEAD/CoordinatorPractice/CoordinatorPractice/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CoordinatorPractice/CoordinatorPractice/Coordinator/BuyCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-Lena/Coordinator/HEAD/CoordinatorPractice/CoordinatorPractice/Coordinator/BuyCoordinator.swift -------------------------------------------------------------------------------- /CoordinatorPractice/CoordinatorPractice/Coordinator/Coordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-Lena/Coordinator/HEAD/CoordinatorPractice/CoordinatorPractice/Coordinator/Coordinator.swift -------------------------------------------------------------------------------- /CoordinatorPractice/CoordinatorPractice/Coordinator/MainCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-Lena/Coordinator/HEAD/CoordinatorPractice/CoordinatorPractice/Coordinator/MainCoordinator.swift -------------------------------------------------------------------------------- /CoordinatorPractice/CoordinatorPractice/CoordinatorPractice.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-Lena/Coordinator/HEAD/CoordinatorPractice/CoordinatorPractice/CoordinatorPractice.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /CoordinatorPractice/CoordinatorPractice/CoordinatorPractice.xcdatamodeld/CoordinatorPractice.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-Lena/Coordinator/HEAD/CoordinatorPractice/CoordinatorPractice/CoordinatorPractice.xcdatamodeld/CoordinatorPractice.xcdatamodel/contents -------------------------------------------------------------------------------- /CoordinatorPractice/CoordinatorPractice/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-Lena/Coordinator/HEAD/CoordinatorPractice/CoordinatorPractice/Info.plist -------------------------------------------------------------------------------- /CoordinatorPractice/CoordinatorPractice/Storyboarded.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-Lena/Coordinator/HEAD/CoordinatorPractice/CoordinatorPractice/Storyboarded.swift -------------------------------------------------------------------------------- /CoordinatorPractice/CoordinatorPractice/ViewController/BuyViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-Lena/Coordinator/HEAD/CoordinatorPractice/CoordinatorPractice/ViewController/BuyViewController.swift -------------------------------------------------------------------------------- /CoordinatorPractice/CoordinatorPractice/ViewController/CreateAccountViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-Lena/Coordinator/HEAD/CoordinatorPractice/CoordinatorPractice/ViewController/CreateAccountViewController.swift -------------------------------------------------------------------------------- /CoordinatorPractice/CoordinatorPractice/ViewController/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-Lena/Coordinator/HEAD/CoordinatorPractice/CoordinatorPractice/ViewController/ViewController.swift -------------------------------------------------------------------------------- /CoordinatorPractice/CoordinatorPracticeTests/CoordinatorPracticeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-Lena/Coordinator/HEAD/CoordinatorPractice/CoordinatorPracticeTests/CoordinatorPracticeTests.swift -------------------------------------------------------------------------------- /CoordinatorPractice/CoordinatorPracticeTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-Lena/Coordinator/HEAD/CoordinatorPractice/CoordinatorPracticeTests/Info.plist -------------------------------------------------------------------------------- /CoordinatorPractice/CoordinatorPracticeUITests/CoordinatorPracticeUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-Lena/Coordinator/HEAD/CoordinatorPractice/CoordinatorPracticeUITests/CoordinatorPracticeUITests.swift -------------------------------------------------------------------------------- /CoordinatorPractice/CoordinatorPracticeUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-Lena/Coordinator/HEAD/CoordinatorPractice/CoordinatorPracticeUITests/Info.plist -------------------------------------------------------------------------------- /Media/coordinator_basic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-Lena/Coordinator/HEAD/Media/coordinator_basic.gif -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-Lena/Coordinator/HEAD/README.md --------------------------------------------------------------------------------