NonTransition
public struct NonTransition : ViewTransition
Transition, that should not be performed and asserts if asked to do so. Can be used for routes that do not clearly define a transition, for example instances of ChainableRoute
, which may have multiple chainable transitions embedded.
-
Returns false
Declaration
Swift
public var isAnimated: Bool { get }
-
Returns .custom.
Declaration
Swift
public var transitionType: TransitionType { get }
-
Returns nil
Declaration
Swift
public var viewFinder: ViewFinder? { get }
-
Creates NonTransition object.
Declaration
Swift
public init()
-
This method is not expected to be called and asserts when it is.
Declaration
Swift
public func perform(with view: ViewController?, on visibleView: ViewController?, completion: ((Bool) -> Void)?)