Structures
The following structures are available globally.
-
A view modifier used to bind and wrap up a body or navigation view to its corresponding view model lifecycle.
See moreDeclaration
Swift
public struct MwxBodyModifier<VM> : ViewModifier where VM : AnyViewModel -
A link modifier that you apply to a view or another view modifier coordinated by a link coordinator producing a navigation link for this view.
See moreDeclaration
Swift
public struct MwxLinkModifier<VM> : ViewModifier where VM : AnyViewModel -
A link modifier that you apply to a view or another view modifier coordinated by a sheet coordinator producing a sheet view for this view.
See moreDeclaration
Swift
public struct MwxSheetModifier<VM> : ViewModifier where VM : AnyViewModel -
A link modifier that you apply to a view or another view modifier coordinated by a tab coordinator producing a tab view with tab items for an input title and image.
See moreDeclaration
Swift
public struct MwxTabModifier<VM> : ViewModifier where VM : AnyViewModel -
A type-erased
View.An
See moreMwxBodyallows changing the type of view used in a given view hierarchy. Whenever the type of view used with anMwxBodychanges, the old hierarchy is destroyed and a new hierarchy is created for the new type use to wrap up a coordinated view.Declaration
Swift
public struct MwxBody<Content> : View where Content : View -
A type-erased
View.An
See moreMwxNavigationBodyallows changing the type of view used in a given view hierarchy. Whenever the type of view used with anMwxNavigationBodychanges, the old hierarchy is destroyed and a new hierarchy is created for the new type use to wrap up a coordinated navigation view.Declaration
Swift
public struct MwxNavigationBody<Content> : View where Content : View -
A type-erased
View.An
See moreMwxTabBodyallows changing the type of view used in a given view hierarchy. Whenever the type of view used with anMwxTabBodychanges, the old hierarchy is destroyed and a new hierarchy is created for the new type use to wrap up a tab view coordinated view.Declaration
Swift
public struct MwxTabBody : View
View on GitHub
Structures Reference