GroupDestinationInternalStateable
public protocol GroupDestinationInternalStateable
This protocol represents classes which holds internal state specific to the GroupedDestinationable
protocol.
-
An enum which defines all routable Destinations in the app.
Declaration
Swift
associatedtype DestinationType where Self.DestinationType == Self.PresentationConfiguration.DestinationType
-
An enum which defines types of tabs in a tab bar.
Declaration
Swift
associatedtype TabType where Self.TabType == Self.PresentationConfiguration.TabType
-
An enum which defines available Destination presentation types. Typically this is
DestinationPresentationType
.Declaration
Swift
associatedtype PresentationType : DestinationPresentationTypeable
-
An enum which defines the types of content that are able to be sent through Destinations.
Declaration
Swift
associatedtype ContentType where Self.ContentType == Self.PresentationConfiguration.ContentType
-
A model type which configures Destination presentations. Typically this is a
DestinationPresentation
.Declaration
Swift
associatedtype PresentationConfiguration : DestinationPresentationConfiguring
-
A type of
AppDestinationConfigurations
which handles system navigation events.Declaration
Swift
typealias NavigationConfigurations = AppDestinationConfigurations<SystemNavigationType, PresentationConfiguration>
-
An array of the child Destinations this object manages.
Declaration
Swift
var childDestinations: [any Destinationable<PresentationConfiguration>] { get set }
-
The child Destination which currently has focus within this Destination’s children.
Declaration
Swift
var currentChildDestination: (any Destinationable<PresentationConfiguration>)? { get set }
-
A closure run when a child Destination is removed from this Group.
Declaration
Swift
var childWasRemovedClosure: GroupChildRemovedClosure? { get set }
-
A closure run when the current child Destination has changed.
Declaration
Swift
var currentDestinationChangedClosure: GroupCurrentDestinationChangedClosure? { get set }
-
Determines whether this Destination supports the
shouldSetDestinationAsCurrent
parameter of theaddChild
method. If this Destination should ignore requests to not make added children the current Destination, this property should be set tofalse
.Declaration
Swift
var supportsIgnoringCurrentDestinationStatus: Bool { get set }