[Feature] Coordinator protocols #2

Merged
javier merged 5 commits from target/coordinator into main 2023-04-16 14:42:43 +00:00
2 changed files with 2 additions and 1 deletions
Showing only changes of commit 061ad36a8b - Show all commits

View File

@ -8,6 +8,7 @@
import UIKit import UIKit
/// This class is responsible for showing view controllers modally, as it is a concrete implementation of the `Router` protocol.
public class ModalNavigationRouter: BaseNavigationRouter { public class ModalNavigationRouter: BaseNavigationRouter {
// MARK: Properties // MARK: Properties

View File

@ -8,7 +8,7 @@
import UIKit import UIKit
/// This class is responsible for presenting view controllers, as it is a concrete implementation of the `Router` protocol, but it won't know what view controller or which view controller is next. /// This class is responsible for pushing view controllers into a navigation controller, as it is a concrete implementation of the `Router` protocol.
public class PushNavigationRouter: BaseNavigationRouter { public class PushNavigationRouter: BaseNavigationRouter {
// MARK: Properties // MARK: Properties