View
public extension ViewA set of view methods to handle coordination requests for views by mapping each coordinator presentation type to its appropriate view modifier handler if available
- 
                  
                  Call this function to handle coordination requests for views by mapping each coordinator presentation type to its appropriate view modifier handler if available. DeclarationSwift func coordinated<VM>(by coordinator: MwxCoordinator<VM>?) -> some View where VM : AnyViewModelParameterscoordinatorA MwxCoordinatorindicates the coordinator for this view.Return ValueThe modified view for this coordination request. 
- 
                  
                  Call this function to handle coordination requests for tab views by mapping each coordinator presentation type to its appropriate view modifier handler if available. DeclarationSwift func coordinated<VM>(by coordinator: MwxCoordinator<VM>?, tabs: [AnyCoordinator]) -> some View where VM : AnyViewModelParameterscoordinatorA MwxCoordinatorindicates the coordinator for this view.tabsA AnyCoordinatorarray indicates the tab coordinators for this tab view.Return ValueThe modified tab view for this coordination request. 
- 
                  
                  Call this function to apply a link modifier to a view or another view modifier coordinated by a link coordinator producing a navigation link for this view. DeclarationSwift func linkModifier<VM>(_ coordinator: MwxCoordinator<VM>) -> AnyView where VM : AnyViewModelParameterscoordinatorA MwxCoordinatorindicates the coordinator for this view.Return ValueThe modified view for this coordination request. 
- 
                  
                  Call this function to apply a sheet modifier to a view or another view modifier coordinated by a sheet coordinator producing a sheet view for this view. DeclarationSwift func sheetModifier<VM>(_ coordinator: MwxCoordinator<VM>) -> AnyView where VM : AnyViewModelParameterscoordinatorA MwxCoordinatorindicates the coordinator for this view.Return ValueThe modified view for this coordination request. 
- 
                  
                  Call this function to apply a sheet modifier 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. DeclarationSwift func tabModifier<VM>(_ coordinator: MwxCoordinator<VM>, tabs: [AnyCoordinator]) -> AnyView where VM : AnyViewModelParameterscoordinatorA MwxCoordinatorindicates the coordinator for this view.tabsA AnyCoordinatorarray indicates the tab coordinators for this tab view.Return ValueThe modified view for this coordination request. 
- 
                  
                  Call this function to apply a no modifier to a view or another view producing a type-erased view for this view. DeclarationSwift func noModifier() -> AnyViewReturn ValueThe type-erased view for this coordination request. 
 View on GitHub
            View on GitHub
           View Extension Reference
      View Extension Reference