SwiftUIContainerDestinationable

@MainActor
public protocol SwiftUIContainerDestinationable<DestinationType, ContentType, TabType> : ControllerDestinationable

This protocol represents the Destination of a UIKit controller which hosts SwiftUI content.

  • The ViewFlow which manages the View Destinations contained by the object conforming to this protocol.

    Declaration

    Swift

    @MainActor
    var viewFlow: ViewFlow<DestinationType, TabType, ContentType>? { get }
  • Presents a SwiftUI View Destination within this container.

    Note

    This method is only called if the presentation’s presentationType is a navigationController() or splitView() type. If the presentation’s presentationType is a splitView(), this method will change it to a .navigationController() type before passing it on to the viewFlow.

    Declaration

    Swift

    @MainActor
    func presentDestination(presentation: DestinationPresentation<DestinationType, ContentType, TabType>)

    Parameters

    presentation

    The Destination presentation representing the View to be presented.