Implemented the Router protocol in the Coordination library.

This commit is contained in:
Javier Cicchelli 2024-03-21 16:26:00 +01:00
parent 2fffe99807
commit 1b4fde9adb

View File

@ -0,0 +1,42 @@
//
// Router.swift
// ReviewsCoordinationKet
//
// Created by Javier Cicchelli on 21/03/2024.
// Copyright © 2024 Röck+Cöde. All rights reserved.
//
import UIKit
public protocol Router: AnyObject {
// MARK: Type aliases
typealias OnDismissClosure = () -> Void
// MARK: Functions
func present(
_ viewController: UIViewController,
animated: Bool,
onDismiss: OnDismissClosure?
)
func dismiss(animated: Bool)
}
// MARK: - Implementations
public extension Router {
// MARK: Functions
func present(
_ viewController: UIViewController,
animated: Bool
) {
present(
viewController,
animated: animated,
onDismiss: nil
)
}
}