DefaultNavigationControllerDestination
@MainActor
public final class DefaultNavigationControllerDestination<EventType, DestinationType, ContentType, TabType, InteractorType> : NavigatingControllerDestinationable where EventType : EventTypeable, DestinationType : RoutableDestinations, ContentType : ContentTypeable, TabType : TabTypeable, InteractorType : InteractorTypeable
Undocumented
-
Declaration
Swift
public typealias ControllerType = DefaultNavigationController<EventType, DestinationType, ContentType, TabType, InteractorType> -
A unique identifier.
Declaration
Swift
@MainActor public let id: UUID -
This enum value conforming to
RoutableDestinationsrepresents a specific Destination type.Declaration
Swift
@MainActor public var type: DestinationType -
The
UIViewControllerclass associated with this Destination.Declaration
Swift
@MainActor public var controller: ControllerType? -
Declaration
Swift
@MainActor public var internalState: DestinationInternalState<EventType, DestinationType, ContentType, TabType, InteractorType> -
Declaration
Swift
@MainActor public var groupInternalState: GroupDestinationInternalState<DestinationType, ContentType, TabType> -
Declaration
Swift
@MainActor public var stateModel: (any StateModeling<DefaultNavigationControllerDestination<EventType, DestinationType, ContentType, TabType, InteractorType>>)? -
The initializer.
Declaration
Swift
@MainActor public init(destinationType: DestinationType, destinationConfigurations: DestinationConfigurations? = nil, navigationConfigurations: NavigationConfigurations? = nil, parentDestination: UUID? = nil, state: (any StateModeling<DefaultNavigationControllerDestination<EventType, DestinationType, ContentType, TabType, InteractorType>>)? = nil)Parameters
destinationTypeThe type of Destination.
destinationConfigurationsThe Destination presentation configurations associated with this Destination.
navigationConfigurationsThe system navigation events associated with this Destination.
parentDestinationThe identifier of the parent Destination.
-
Declaration
Swift
@MainActor public func prepareForPresentation()
View on GitHub