├── .gitignore ├── .spi.yml ├── .swiftpm └── xcode │ └── xcshareddata │ └── xcschemes │ └── SwiftUINavigation.xcscheme ├── Examples ├── Examples.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── swiftpm │ │ └── Package.resolved └── Examples │ ├── AppDelegate.swift │ ├── Dependencies │ ├── Dependencies.swift │ └── ServicesImplementations │ │ ├── HandleDeepLinkNavigationCommandFactory │ │ ├── DefaultHandleDeepLinkNavigationCommandFactory.swift │ │ └── HandleDeepLinkNavigationCommand.swift │ │ └── MoveInOnboardingNavigationCommandFactory │ │ ├── DefaultMoveInOnboardingNavigationCommandFactory.swift │ │ └── MoveInOnboardingNavigationCommand.swift │ ├── Examples.entitlements │ ├── ExamplesApp.swift │ ├── Modules │ ├── ActionableList │ │ ├── .gitignore │ │ ├── Package.swift │ │ └── Sources │ │ │ └── ActionableList │ │ │ ├── ActionableListNavigationModel.swift │ │ │ ├── ActionableListView.swift │ │ │ ├── ActionableListViewModel.swift │ │ │ ├── Data │ │ │ ├── ActionableListDataFactory.swift │ │ │ ├── ActionableListItem.swift │ │ │ └── Factories │ │ │ │ ├── Commands │ │ │ │ ├── CommandsActionableListDataFactory.swift │ │ │ │ ├── ModalsSpecialActionableListDataFactory.swift │ │ │ │ ├── ModalsTraditionalActionableListDataFactory.swift │ │ │ │ ├── StackActionableListDataFactory.swift │ │ │ │ └── URLHandlingActionableListDataFactory.swift │ │ │ │ └── Flows │ │ │ │ └── FlowsActionableListDataFactory.swift │ │ │ └── View │ │ │ └── ActionableListItemView.swift │ ├── App │ │ ├── .gitignore │ │ ├── Package.swift │ │ └── Sources │ │ │ └── App │ │ │ └── AppNavigationModel.swift │ ├── ArchitectureExample │ │ ├── .gitignore │ │ ├── Package.swift │ │ └── Sources │ │ │ └── ArchitectureExample │ │ │ ├── ArchitectureExampleNavigationModel.swift │ │ │ ├── ArchitectureExampleView.swift │ │ │ └── ArchitectureExampleViewModel.swift │ ├── CustomConfirmationDialog │ │ ├── .gitignore │ │ ├── Package.swift │ │ └── Sources │ │ │ └── CustomConfirmationDialog │ │ │ ├── CustomConfirmationDialogModel.swift │ │ │ ├── CustomConfirmationDialogNavigationModel.swift │ │ │ └── CustomConfirmationDialogView.swift │ ├── CustomNavigationBar │ │ ├── .gitignore │ │ ├── Package.swift │ │ └── Sources │ │ │ └── CustomNavigationBar │ │ │ ├── CustomNavigationBarNavigationModel.swift │ │ │ ├── CustomNavigationBarView.swift │ │ │ └── OffsetObservableScrollView.swift │ ├── LockedApp │ │ ├── .gitignore │ │ ├── Package.swift │ │ └── Sources │ │ │ └── LockedApp │ │ │ ├── LockedAppNavigationModel.swift │ │ │ ├── LockedAppView.swift │ │ │ └── LockedAppViewModel.swift │ ├── MainTabs │ │ ├── .gitignore │ │ ├── Package.swift │ │ └── Sources │ │ │ └── MainTabs │ │ │ └── MainTabsNavigationModel.swift │ ├── OnboardingQuestion │ │ ├── .gitignore │ │ ├── Package.swift │ │ └── Sources │ │ │ └── OnboardingQuestion │ │ │ ├── OnboardingQuestionNavigationModel.swift │ │ │ ├── OnboardingQuestionView.swift │ │ │ └── OnboardingQuestionViewModel.swift │ ├── OnboardingResult │ │ ├── .gitignore │ │ ├── Package.swift │ │ └── Sources │ │ │ └── OnboardingResult │ │ │ ├── OnboardingResultNavigationModel.swift │ │ │ └── OnboardingResultView.swift │ ├── SegmentedTabs │ │ ├── .gitignore │ │ ├── Package.swift │ │ └── Sources │ │ │ └── SegmentedTabs │ │ │ ├── SegmentedTab.swift │ │ │ ├── SegmentedTabsNavigationModel.swift │ │ │ └── SegmentedTabsView.swift │ ├── Start │ │ ├── .gitignore │ │ ├── Package.swift │ │ └── Sources │ │ │ └── Start │ │ │ ├── StartNavigationModel.swift │ │ │ ├── StartView.swift │ │ │ └── StartViewModel.swift │ ├── Subscription │ │ ├── .gitignore │ │ ├── Package.swift │ │ └── Sources │ │ │ └── Subscription │ │ │ └── SubscriptionNavigationModel.swift │ ├── SubscriptionFreemium │ │ ├── .gitignore │ │ ├── Package.swift │ │ └── Sources │ │ │ └── SubscriptionFreemium │ │ │ ├── SubscriptionFreemiumNavigationModel.swift │ │ │ ├── SubscriptionFreemiumView.swift │ │ │ └── SubscriptionFreemiumViewModel.swift │ ├── SubscriptionPremium │ │ ├── .gitignore │ │ ├── Package.swift │ │ └── Sources │ │ │ └── SubscriptionPremium │ │ │ ├── Resources │ │ │ └── Images.xcassets │ │ │ │ ├── Contents.json │ │ │ │ └── buyMeCoffeeButton.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── buyMeCoffeeButton.jpg │ │ │ ├── SubscriptionPremiumNavigationModel.swift │ │ │ ├── SubscriptionPremiumView.swift │ │ │ └── SubscriptionPremiumViewModel.swift │ └── Waiting │ │ ├── .gitignore │ │ ├── Package.swift │ │ └── Sources │ │ └── Waiting │ │ ├── Resources │ │ └── Images.xcassets │ │ │ ├── Contents.json │ │ │ └── meme.imageset │ │ │ ├── Contents.json │ │ │ └── meme.png │ │ ├── WaitingNavigationModel.swift │ │ └── WaitingView.swift │ ├── README.md │ ├── Resources │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ └── AppIcon.appiconset │ │ │ ├── 1024.png │ │ │ ├── 128.png │ │ │ ├── 16.png │ │ │ ├── 256 1.png │ │ │ ├── 256.png │ │ │ ├── 32 1.png │ │ │ ├── 32.png │ │ │ ├── 512 1.png │ │ │ ├── 512.png │ │ │ ├── 64.png │ │ │ ├── Contents.json │ │ │ └── SwiftUINavigationAppIcon.png │ └── Info.plist │ ├── Shared │ └── Shared │ │ ├── .gitignore │ │ ├── Package.swift │ │ └── Sources │ │ └── Shared │ │ ├── CustomCommands │ │ ├── RequestReviewNavigationCommand.swift │ │ ├── ShowAndHideAfterDelayNavigationCommand.swift │ │ └── StackReverseNavigationCommand.swift │ │ ├── CustomEnvironmentTriggers │ │ ├── Handler │ │ │ └── ExamplesNavigationEnvironmentTriggerHandler.swift │ │ └── Triggers │ │ │ └── RequestReviewNavigationEnvironmentTrigger.swift │ │ ├── CustomPresentedNavigationModels │ │ └── PhotosPicker │ │ │ ├── PhotosPickerInputData.swift │ │ │ ├── PhotosPickerNavigationModel.swift │ │ │ └── PhotosPickerPresentedNavigationModel.swift │ │ ├── CustomUIViewControllerRepresentable │ │ └── Activity │ │ │ ├── ActivityInputData.swift │ │ │ ├── ActivityNavigationModel.swift │ │ │ └── ActivityView.swift │ │ ├── Environment │ │ └── EnvironmentValues+.swift │ │ ├── Navigation │ │ ├── DeepLink │ │ │ └── ExamplesAppNavigationDeepLink.swift │ │ ├── InputData │ │ │ ├── ActionableListInputData.swift │ │ │ ├── ArchitectureExampleInputData.swift │ │ │ ├── CustomConfirmationDialogInputData.swift │ │ │ ├── MainTabsInputData.swift │ │ │ ├── OnboardingQuestionInputData.swift │ │ │ └── SubscriptionInputData.swift │ │ ├── Messages │ │ │ └── CustomConfirmationDialogConfirmationNavigationMessage.swift │ │ └── Windows │ │ │ └── WindowID.swift │ │ ├── Resources │ │ └── Colors.xcassets │ │ │ ├── Contents.json │ │ │ ├── backgroundGray.colorset │ │ │ └── Contents.json │ │ │ ├── cardBackground.colorset │ │ │ └── Contents.json │ │ │ ├── grayscalePrimary.colorset │ │ │ └── Contents.json │ │ │ └── grayscaleSecondary.colorset │ │ │ └── Contents.json │ │ ├── Services │ │ ├── DeepLinkForwarderService.swift │ │ ├── FlagsRepository.swift │ │ ├── HandleDeepLinkNavigationCommandFactory.swift │ │ ├── NotificationsService.swift │ │ └── OnboardingService │ │ │ ├── MoveInOnboardingNavigationCommandFactory.swift │ │ │ ├── OnboardingService.swift │ │ │ ├── OnboardingStep.swift │ │ │ └── OnboardingStepID.swift │ │ └── UI │ │ ├── CustomTextEditor.swift │ │ ├── DismissButton.swift │ │ ├── IdentifiableViewModel.swift │ │ ├── PrimaryButton.swift │ │ ├── ShakeGesture.swift │ │ └── SharedColor.swift │ └── Windows │ ├── AppWindow.swift │ └── WaitingWindow.swift ├── LICENSE ├── Package.resolved ├── Package.swift ├── README.md ├── READMEAssets ├── appIcon.png ├── commands.png ├── debugging.png ├── flows.png └── relationships.png ├── Sources ├── Macros │ ├── Implementations │ │ ├── NavigationModelMacro.swift │ │ ├── StackRootNavigationModelMacro.swift │ │ ├── SwitchedNavigationModelMacro.swift │ │ └── TabsRootNavigationModelMacro.swift │ └── SwiftUINavigationMacros.swift └── SwiftUINavigation │ ├── Command │ ├── NavigationCommand+Static.swift │ ├── NavigationCommand.swift │ └── Predefined │ │ ├── DismissJustFromPresentedNavigationCommand.swift │ │ ├── DismissNavigationCommand.swift │ │ ├── DismissWindowNavigationCommand.swift │ │ ├── OpenURLNavigationCommand.swift │ │ ├── OpenWindowNavigationCommand.swift │ │ ├── PresentNavigationCommand.swift │ │ ├── PresentOnGivenModelNavigationCommand.swift │ │ ├── ResolvedHideNavigationCommand.swift │ │ ├── StackAppendNavigationCommand.swift │ │ ├── StackDropLastNavigationCommand.swift │ │ ├── StackDropToRootNavigationCommand.swift │ │ ├── StackMapNavigationCommand.swift │ │ ├── StackSetRootNavigationCommand.swift │ │ ├── SwitchNavigationCommand.swift │ │ └── TabsSelectItemNavigationCommand.swift │ ├── Config │ └── NavigationConfig.swift │ ├── Environment │ ├── EnvironmentNavigationModel.swift │ └── EnvironmentValues+.swift │ ├── Extensions │ └── UINavigationController+.swift │ ├── Macros │ └── Macros.swift │ ├── Message │ ├── FinishedNavigationMessage.swift │ ├── NavigationMessage.swift │ └── NavigationMessageListener.swift │ ├── Models │ ├── Main │ │ ├── AnyNavigationModel.swift │ │ ├── CommonNavigationModelState.swift │ │ ├── EquatableNavigationModel.swift │ │ ├── NavigationCommandExecuter.swift │ │ ├── NavigationModel+Iterating.swift │ │ ├── NavigationModel+NavigationCommandExecuter.swift │ │ └── NavigationModel.swift │ ├── Predefined │ │ ├── SFSafari │ │ │ ├── SFSafariInputData.swift │ │ │ ├── SFSafariNavigationModel.swift │ │ │ └── SFSafariView.swift │ │ ├── Stack │ │ │ ├── DefaultStackRootNavigationModel+Static.swift │ │ │ ├── DefaultStackRootNavigationModel.swift │ │ │ ├── StackNavigationDestination.swift │ │ │ ├── StackNavigationModel.swift │ │ │ ├── StackRootNavigationModel.swift │ │ │ ├── StackRootNavigationModelView.swift │ │ │ ├── StackTabBarToolbarBehavior.swift │ │ │ └── Transition │ │ │ │ ├── StackNavigationTransition.swift │ │ │ │ └── ZoomStackNavigationTransition.swift │ │ ├── Switched │ │ │ ├── SwitchedNavigationModel.swift │ │ │ └── SwitchedNavigationModelView.swift │ │ └── Tabs │ │ │ ├── DefaultTabModel.swift │ │ │ ├── TabModel.swift │ │ │ ├── TabsRootNavigationModel.swift │ │ │ └── TabsRootNavigationModelView.swift │ ├── Presented │ │ ├── Alert │ │ │ ├── AlertInputData.swift │ │ │ ├── AlertNavigationModel.swift │ │ │ └── AlertPresentedNavigationModel.swift │ │ ├── ConfirmationDialog │ │ │ ├── ConfirmationDialogInputData.swift │ │ │ ├── ConfirmationDialogNavigationModel.swift │ │ │ └── ConfirmationDialogPresentedNavigationModel.swift │ │ ├── FullScreenCover │ │ │ └── FullScreenCoverPresentedNavigationModel.swift │ │ ├── PresentedNavigationModel+Static.swift │ │ ├── PresentedNavigationModel.swift │ │ ├── PresentingNavigationSourceViewModifier.swift │ │ └── Sheet │ │ │ └── SheetPresentedNavigationModel.swift │ └── Resolving │ │ └── NavigationModelResolvedView.swift │ ├── NavigationEnvironmentTrigger │ ├── Handler │ │ └── DefaultNavigationEnvironmentTriggerHandler.swift │ └── Triggers │ │ ├── NavigationEnvironmentTrigger.swift │ │ └── Predefined │ │ ├── DismissNavigationEnvironmentTrigger.swift │ │ ├── DismissWindowNavigationEnvironmentTrigger.swift │ │ ├── OpenURLNavigationEnvironmentTrigger.swift │ │ └── OpenWindowNavigationEnvironmentTrigger.swift │ ├── Root │ └── RootNavigationView.swift │ └── Transitions │ └── AnyNavigationTransition.swift └── docs ├── css ├── 866.60f074fd.css ├── 989.4f123103.css ├── documentation-topic.99224ad2.css ├── index.3a335429.css ├── topic.4be8f56d.css └── tutorials-overview.7942d777.css ├── data └── documentation │ ├── swiftuinavigation.json │ └── swiftuinavigation │ ├── alertinputdata.json │ ├── alertinputdata │ ├── action.json │ ├── action │ │ ├── init(id:title:role:handler:).json │ │ ├── role.json │ │ └── role │ │ │ ├── !=(_:_:).json │ │ │ ├── cancel.json │ │ │ ├── destructive.json │ │ │ └── equatable-implementations.json │ └── init(title:message:actions:).json │ ├── alertpresentednavigationnode.json │ ├── alertpresentednavigationnode │ ├── alert(_:sourceid:).json │ ├── init(inputdata:sourceid:).json │ ├── makeispresentedbinding(presentednode:sourceid:).json │ ├── node.json │ ├── presentednavigationnode-implementations.json │ ├── presenterresolvedviewmodifier(presentednode:content:sourceid:).json │ └── sourceid.json │ ├── anynavigationnode.json │ ├── anynavigationnode │ ├── addmessagelistener(_:).json │ ├── basenavigationnodechildren.json │ ├── body.json │ ├── canexecute(_:).json │ ├── canpresentifwouldnt.json │ ├── children.json │ ├── childrennodeswhichcanpresent.json │ ├── commonstate.json │ ├── execute(_:).json │ ├── finishifneeded().json │ ├── id.json │ ├── init(_:).json │ ├── iswrappernode.json │ ├── navigationnode-implementations.json │ ├── nearestchildrennodewhichcanpresent.json │ ├── nearestnodewhichcanpresent.json │ ├── nearestnodewhichcanpresentfromparent.json │ ├── objectwillchange.json │ ├── observableobject-implementations.json │ ├── onmessagereceived(_:).json │ ├── parent.json │ ├── predecessors.json │ ├── predecessorsincludingself.json │ ├── presentednode.json │ ├── printdebuggraph().json │ ├── printdebugtext(_:).json │ ├── root.json │ ├── sendenvironmenttrigger(_:).json │ ├── sendmessage(_:).json │ ├── startifneeded(parent:).json │ ├── successors.json │ ├── successorsincludingself.json │ └── toppresented.json │ ├── commonnavigationnodestate.json │ ├── commonnavigationnodestate │ ├── init().json │ ├── objectwillchange.json │ └── observableobject-implementations.json │ ├── confirmationdialoginputdata.json │ ├── confirmationdialoginputdata │ ├── action.json │ ├── action │ │ ├── init(id:title:role:handler:).json │ │ ├── role.json │ │ └── role │ │ │ ├── !=(_:_:).json │ │ │ ├── cancel.json │ │ │ ├── destructive.json │ │ │ └── equatable-implementations.json │ └── init(message:actions:).json │ ├── confirmationdialogpresentednavigationnode.json │ ├── confirmationdialogpresentednavigationnode │ ├── confirmationdialog(_:sourceid:).json │ ├── init(inputdata:sourceid:).json │ ├── makeispresentedbinding(presentednode:sourceid:).json │ ├── node.json │ ├── presentednavigationnode-implementations.json │ ├── presenterresolvedviewmodifier(presentednode:content:sourceid:).json │ └── sourceid.json │ ├── defaultnavigationenvironmenttriggerhandler.json │ ├── defaultnavigationenvironmenttriggerhandler │ ├── handletrigger(_:in:).json │ └── init().json │ ├── defaultstackrootnavigationnode.json │ ├── defaultstackrootnavigationnode │ ├── addmessagelistener(_:).json │ ├── basenavigationnodechildren.json │ ├── body(for:).json │ ├── body.json │ ├── canexecute(_:).json │ ├── canpresentifwouldnt.json │ ├── children.json │ ├── childrennodeswhichcanpresent.json │ ├── execute(_:).json │ ├── finishifneeded().json │ ├── init(stacknodes:tabbartoolbarbehavior:)-6zapr.json │ ├── init(stacknodes:tabbartoolbarbehavior:)-702b6.json │ ├── iswrappernode.json │ ├── navigationnode-implementations.json │ ├── nearestchildrennodewhichcanpresent.json │ ├── nearestnodewhichcanpresent.json │ ├── nearestnodewhichcanpresentfromparent.json │ ├── objectwillchange.json │ ├── observableobject-implementations.json │ ├── onmessagereceived(_:).json │ ├── parent.json │ ├── predecessors.json │ ├── predecessorsincludingself.json │ ├── presentednode.json │ ├── printdebuggraph().json │ ├── printdebugtext(_:).json │ ├── root.json │ ├── sendenvironmenttrigger(_:).json │ ├── sendmessage(_:).json │ ├── setnewpath(_:).json │ ├── stacked(_:tabbartoolbarbehavior:)-2syiq.json │ ├── stacked(_:tabbartoolbarbehavior:)-4clsl.json │ ├── stacked(_:tabbartoolbarbehavior:)-4ohiu.json │ ├── stacked(_:tabbartoolbarbehavior:)-7xm6x.json │ ├── stacknodes.json │ ├── stackrootnavigationnode-implementations.json │ ├── startifneeded(parent:).json │ ├── successors.json │ ├── successorsincludingself.json │ ├── tabbartoolbarbehavior.json │ └── toppresented.json │ ├── defaulttabnode.json │ ├── defaulttabnode │ ├── id.json │ ├── init(id:image:title:navigationnode:).json │ ├── navigationnode.json │ └── resolvedview.json │ ├── dismissjustfrompresentednavigationcommand.json │ ├── dismissjustfrompresentednavigationcommand │ ├── canexecute(on:).json │ ├── dismissjustfrompresented(animated:).json │ ├── execute(on:).json │ ├── init(animated:).json │ ├── navigationcommand-implementations.json │ └── perform(animated:action:).json │ ├── dismissnavigationcommand.json │ ├── dismissnavigationcommand │ ├── canexecute(on:).json │ ├── dismiss(animated:).json │ ├── execute(on:).json │ ├── init(animated:).json │ ├── navigationcommand-implementations.json │ └── perform(animated:action:).json │ ├── dismisswindownavigationcommand.json │ ├── dismisswindownavigationcommand │ ├── canexecute(on:).json │ ├── dismisswindow(id:).json │ ├── execute(on:).json │ ├── init(id:).json │ ├── navigationcommand-implementations.json │ └── perform(animated:action:).json │ ├── environmentnavigationnode.json │ ├── environmentnavigationnode │ ├── dynamicproperty-implementations.json │ ├── init().json │ ├── update().json │ └── wrappedvalue.json │ ├── equatablenavigationnode.json │ ├── equatablenavigationnode │ ├── !=(_:_:).json │ ├── ==(_:_:).json │ ├── equatable-implementations.json │ └── wrapped.json │ ├── fullscreencoverpresentednavigationnode.json │ ├── fullscreencoverpresentednavigationnode │ ├── fullscreencover(_:).json │ ├── makeispresentedbinding(presentednode:sourceid:).json │ ├── node.json │ ├── presentednavigationnode-implementations.json │ ├── presenterresolvedviewmodifier(presentednode:content:sourceid:).json │ └── sourceid.json │ ├── navigationcommand.json │ ├── navigationcommand │ ├── canexecute(on:).json │ ├── dismiss(animated:).json │ ├── dismissjustfrompresented(animated:).json │ ├── dismisswindow(id:).json │ ├── execute(on:).json │ ├── hide(animated:).json │ ├── openurl(_:).json │ ├── openwindow(id:).json │ ├── perform(animated:action:).json │ ├── present(_:animated:).json │ ├── stackappend(_:animated:)-2cmea.json │ ├── stackappend(_:animated:)-663u2.json │ ├── stackdroplast(_:animated:).json │ ├── stackdroptoroot(animated:).json │ ├── stackmap(_:animated:).json │ ├── stacksetroot(_:clear:animated:).json │ ├── switchnode(_:).json │ └── tabsselectitem(id:).json │ ├── navigationcommandexecuter.json │ ├── navigationcommandexecuter │ ├── canexecute(_:)-18bgp.json │ ├── canexecute(_:)-93s2l.json │ ├── execute(_:)-746s.json │ └── execute(_:)-75m.json │ ├── navigationconfig.json │ ├── navigationconfig │ ├── isdebugprintenabled.json │ └── shared.json │ ├── navigationenvironmenttrigger.json │ ├── navigationmessage.json │ ├── navigationmessagelistener.json │ ├── navigationnode().json │ ├── navigationnode.json │ ├── navigationnode │ ├── addmessagelistener(_:).json │ ├── basenavigationnodechildren.json │ ├── body-1cqfc.json │ ├── body-5me60.json │ ├── body-7huua.json │ ├── body-7ra17.json │ ├── body-swift.associatedtype.json │ ├── canpresentifwouldnt.json │ ├── children-2nvge.json │ ├── children-2xddt.json │ ├── children-4obi5.json │ ├── children-6vf9t.json │ ├── children-9yggz.json │ ├── childrennodeswhichcanpresent.json │ ├── commonstate.json │ ├── finishifneeded()-35h31.json │ ├── finishifneeded()-6nfps.json │ ├── id.json │ ├── iswrappernode-23e7v.json │ ├── iswrappernode-4cc6p.json │ ├── nearestchildrennodewhichcanpresent.json │ ├── nearestnodewhichcanpresent.json │ ├── nearestnodewhichcanpresentfromparent.json │ ├── onmessagereceived(_:).json │ ├── parent-1pzhz.json │ ├── parent-8igea.json │ ├── predecessors.json │ ├── predecessorsincludingself.json │ ├── presentednode-7cm1j.json │ ├── presentednode-9l8f8.json │ ├── printdebuggraph().json │ ├── printdebugtext(_:).json │ ├── root.json │ ├── sendenvironmenttrigger(_:).json │ ├── sendmessage(_:).json │ ├── stacked(_:tabbartoolbarbehavior:)-2m5q6.json │ ├── stacked(_:tabbartoolbarbehavior:)-4jdjf.json │ ├── stacked(_:tabbartoolbarbehavior:)-5a9d.json │ ├── stacked(_:tabbartoolbarbehavior:)-8bugb.json │ ├── startifneeded(parent:)-1i0lc.json │ ├── startifneeded(parent:)-r2p2.json │ ├── successors.json │ ├── successorsincludingself.json │ └── toppresented.json │ ├── navigationnoderesolvedview.json │ ├── navigationnoderesolvedview │ ├── accentcolor(_:).json │ ├── accessibility(activationpoint:)-2cpad.json │ ├── accessibility(activationpoint:)-44sfc.json │ ├── accessibility(addtraits:).json │ ├── accessibility(hidden:).json │ ├── accessibility(hint:).json │ ├── accessibility(identifier:).json │ ├── accessibility(inputlabels:).json │ ├── accessibility(label:).json │ ├── accessibility(removetraits:).json │ ├── accessibility(selectionidentifier:).json │ ├── accessibility(sortpriority:).json │ ├── accessibility(value:).json │ ├── accessibilityaction(_:_:).json │ ├── accessibilityaction(action:label:).json │ ├── accessibilityaction(named:_:)-2vued.json │ ├── accessibilityaction(named:_:)-3j58s.json │ ├── accessibilityaction(named:_:)-3zm9i.json │ ├── accessibilityactions(_:).json │ ├── accessibilityactions(category:_:).json │ ├── accessibilityactivationpoint(_:)-2ma10.json │ ├── accessibilityactivationpoint(_:)-5muqg.json │ ├── accessibilityactivationpoint(_:isenabled:)-1ysmt.json │ ├── accessibilityactivationpoint(_:isenabled:)-716a8.json │ ├── accessibilityaddtraits(_:).json │ ├── accessibilityadjustableaction(_:).json │ ├── accessibilitychartdescriptor(_:).json │ ├── accessibilitychildren(children:).json │ ├── accessibilitycustomcontent(_:_:importance:)-4921d.json │ ├── accessibilitycustomcontent(_:_:importance:)-4iz6w.json │ ├── accessibilitycustomcontent(_:_:importance:)-4ll9a.json │ ├── accessibilitycustomcontent(_:_:importance:)-6eonf.json │ ├── accessibilitycustomcontent(_:_:importance:)-6f825.json │ ├── accessibilitycustomcontent(_:_:importance:)-6oe0l.json │ ├── accessibilitycustomcontent(_:_:importance:)-7ex3d.json │ ├── accessibilitycustomcontent(_:_:importance:)-883ke.json │ ├── accessibilitydirecttouch(_:options:).json │ ├── accessibilitydragpoint(_:description:)-20tx4.json │ ├── accessibilitydragpoint(_:description:)-7vmga.json │ ├── accessibilitydragpoint(_:description:)-x1c7.json │ ├── accessibilitydragpoint(_:description:isenabled:)-1em1c.json │ ├── accessibilitydragpoint(_:description:isenabled:)-5hnqf.json │ ├── accessibilitydragpoint(_:description:isenabled:)-94rmk.json │ ├── accessibilitydroppoint(_:description:)-4xd40.json │ ├── accessibilitydroppoint(_:description:)-77mc5.json │ ├── accessibilitydroppoint(_:description:)-9rwcp.json │ ├── accessibilitydroppoint(_:description:isenabled:)-1pwcs.json │ ├── accessibilitydroppoint(_:description:isenabled:)-2cmeu.json │ ├── accessibilitydroppoint(_:description:isenabled:)-5gqoc.json │ ├── accessibilityelement(children:).json │ ├── accessibilityfocused(_:).json │ ├── accessibilityfocused(_:equals:).json │ ├── accessibilityheading(_:).json │ ├── accessibilityhidden(_:).json │ ├── accessibilityhidden(_:isenabled:).json │ ├── accessibilityhint(_:)-2xcb9.json │ ├── accessibilityhint(_:)-4dnp0.json │ ├── accessibilityhint(_:)-8ag7d.json │ ├── accessibilityhint(_:isenabled:)-3aigf.json │ ├── accessibilityhint(_:isenabled:)-65ixn.json │ ├── accessibilityhint(_:isenabled:)-8btak.json │ ├── accessibilityidentifier(_:).json │ ├── accessibilityidentifier(_:isenabled:).json │ ├── accessibilityignoresinvertcolors(_:).json │ ├── accessibilityinputlabels(_:)-3e038.json │ ├── accessibilityinputlabels(_:)-5qdf9.json │ ├── accessibilityinputlabels(_:)-yqs.json │ ├── accessibilityinputlabels(_:isenabled:)-2dxzl.json │ ├── accessibilityinputlabels(_:isenabled:)-95oew.json │ ├── accessibilityinputlabels(_:isenabled:)-tvyc.json │ ├── accessibilitylabel(_:)-1akf.json │ ├── accessibilitylabel(_:)-42fu3.json │ ├── accessibilitylabel(_:)-5q712.json │ ├── accessibilitylabel(_:isenabled:)-2gxua.json │ ├── accessibilitylabel(_:isenabled:)-5t99f.json │ ├── accessibilitylabel(_:isenabled:)-6zegj.json │ ├── accessibilitylabel(content:).json │ ├── accessibilitylabeledpair(role:id:in:).json │ ├── accessibilitylinkedgroup(id:in:).json │ ├── accessibilityremovetraits(_:).json │ ├── accessibilityrepresentation(representation:).json │ ├── accessibilityrespondstouserinteraction(_:).json │ ├── accessibilityrespondstouserinteraction(_:isenabled:).json │ ├── accessibilityrotor(_:entries:)-1zuyj.json │ ├── accessibilityrotor(_:entries:)-2imn.json │ ├── accessibilityrotor(_:entries:)-8b1sh.json │ ├── accessibilityrotor(_:entries:)-9t5gw.json │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-1y5cv.json │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-59bw2.json │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-7bws5.json │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-9j85t.json │ ├── accessibilityrotor(_:entries:entrylabel:)-5br60.json │ ├── accessibilityrotor(_:entries:entrylabel:)-67drh.json │ ├── accessibilityrotor(_:entries:entrylabel:)-7k9hx.json │ ├── accessibilityrotor(_:entries:entrylabel:)-kcl5.json │ ├── accessibilityrotor(_:textranges:)-4x9cs.json │ ├── accessibilityrotor(_:textranges:)-637b5.json │ ├── accessibilityrotor(_:textranges:)-69qas.json │ ├── accessibilityrotor(_:textranges:)-9yin2.json │ ├── accessibilityrotorentry(id:in:).json │ ├── accessibilityscrollaction(_:).json │ ├── accessibilityshowslargecontentviewer().json │ ├── accessibilityshowslargecontentviewer(_:).json │ ├── accessibilitysortpriority(_:).json │ ├── accessibilitytextcontenttype(_:).json │ ├── accessibilityvalue(_:)-12rk5.json │ ├── accessibilityvalue(_:)-4hgdb.json │ ├── accessibilityvalue(_:)-55e4q.json │ ├── accessibilityvalue(_:isenabled:)-2z4nq.json │ ├── accessibilityvalue(_:isenabled:)-5tkgu.json │ ├── accessibilityvalue(_:isenabled:)-8zzke.json │ ├── accessibilityzoomaction(_:).json │ ├── actionsheet(ispresented:content:).json │ ├── actionsheet(item:content:).json │ ├── alert(_:ispresented:actions:)-5cao5.json │ ├── alert(_:ispresented:actions:)-94ie4.json │ ├── alert(_:ispresented:actions:)-96x8v.json │ ├── alert(_:ispresented:actions:message:)-2tltt.json │ ├── alert(_:ispresented:actions:message:)-6dyj2.json │ ├── alert(_:ispresented:actions:message:)-jqw2.json │ ├── alert(_:ispresented:presenting:actions:)-3xw1v.json │ ├── alert(_:ispresented:presenting:actions:)-7782u.json │ ├── alert(_:ispresented:presenting:actions:)-7c4d5.json │ ├── alert(_:ispresented:presenting:actions:message:)-37pzc.json │ ├── alert(_:ispresented:presenting:actions:message:)-39z8x.json │ ├── alert(_:ispresented:presenting:actions:message:)-g5vm.json │ ├── alert(ispresented:content:).json │ ├── alert(ispresented:error:actions:).json │ ├── alert(ispresented:error:actions:message:).json │ ├── alert(item:content:).json │ ├── alignmentguide(_:computevalue:)-7jv6e.json │ ├── alignmentguide(_:computevalue:)-d29o.json │ ├── alloweddynamicrange(_:).json │ ├── allowshittesting(_:).json │ ├── allowstightening(_:).json │ ├── allowswindowactivationevents(_:).json │ ├── anchorpreference(key:value:transform:).json │ ├── animation(_:).json │ ├── animation(_:body:).json │ ├── animation(_:value:).json │ ├── aspectratio(_:contentmode:)-82hwg.json │ ├── aspectratio(_:contentmode:)-91su6.json │ ├── autocapitalization(_:).json │ ├── autocorrectiondisabled(_:).json │ ├── background(_:alignment:).json │ ├── background(_:ignoressafeareaedges:).json │ ├── background(_:in:fillstyle:)-1q3xo.json │ ├── background(_:in:fillstyle:)-4sk7i.json │ ├── background(alignment:content:).json │ ├── background(ignoressafeareaedges:).json │ ├── background(in:fillstyle:)-2u4dx.json │ ├── background(in:fillstyle:)-n6oy.json │ ├── backgroundpreferencevalue(_:_:).json │ ├── backgroundpreferencevalue(_:alignment:_:).json │ ├── backgroundstyle(_:).json │ ├── badge(_:)-6ubw8.json │ ├── badge(_:)-7du7p.json │ ├── badge(_:)-7hecr.json │ ├── badge(_:)-lsoq.json │ ├── badgeprominence(_:).json │ ├── baselineoffset(_:).json │ ├── blendmode(_:).json │ ├── blur(radius:opaque:).json │ ├── body.json │ ├── bold(_:).json │ ├── border(_:width:).json │ ├── brightness(_:).json │ ├── buttonbordershape(_:).json │ ├── buttonrepeatbehavior(_:).json │ ├── buttonstyle(_:)-1jyc2.json │ ├── buttonstyle(_:)-zsmp.json │ ├── clipped(antialiased:).json │ ├── clipshape(_:style:).json │ ├── coloreffect(_:isenabled:).json │ ├── colorinvert().json │ ├── colormultiply(_:).json │ ├── colorscheme(_:).json │ ├── compositinggroup().json │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-5gunj.json │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-6cjpc.json │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-7m31k.json │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-3sab8.json │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-5shc1.json │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-73r00.json │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-5gt1s.json │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-7exkx.json │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-9k4u3.json │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-3i9uf.json │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-4hp6m.json │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-77b8v.json │ ├── containerbackground(_:for:).json │ ├── containerbackground(for:alignment:content:).json │ ├── containerrelativeframe(_:alignment:).json │ ├── containerrelativeframe(_:alignment:_:).json │ ├── containerrelativeframe(_:count:span:spacing:alignment:).json │ ├── containershape(_:).json │ ├── containervalue(_:_:).json │ ├── contentmargins(_:_:for:)-3gto8.json │ ├── contentmargins(_:_:for:)-87ht6.json │ ├── contentmargins(_:for:).json │ ├── contentshape(_:_:eofill:).json │ ├── contentshape(_:eofill:).json │ ├── contenttransition(_:).json │ ├── contextmenu(_:).json │ ├── contextmenu(forselectiontype:menu:primaryaction:).json │ ├── contextmenu(menuitems:).json │ ├── contextmenu(menuitems:preview:).json │ ├── contrast(_:).json │ ├── controlgroupstyle(_:).json │ ├── controlsize(_:).json │ ├── coordinatespace(_:).json │ ├── coordinatespace(name:).json │ ├── cornerradius(_:antialiased:).json │ ├── datepickerstyle(_:).json │ ├── defaultadaptabletabbarplacement(_:).json │ ├── defaultappstorage(_:).json │ ├── defaultfocus(_:_:priority:).json │ ├── defaulthovereffect(_:)-12j87.json │ ├── defaulthovereffect(_:)-48n3h.json │ ├── defaultscrollanchor(_:).json │ ├── defaultscrollanchor(_:for:).json │ ├── deferssystemgestures(on:).json │ ├── deletedisabled(_:).json │ ├── dialogicon(_:).json │ ├── dialogsuppressiontoggle(_:issuppressed:)-1b8wi.json │ ├── dialogsuppressiontoggle(_:issuppressed:)-43yk3.json │ ├── dialogsuppressiontoggle(_:issuppressed:)-659p4.json │ ├── dialogsuppressiontoggle(issuppressed:).json │ ├── disableautocorrection(_:).json │ ├── disabled(_:).json │ ├── disclosuregroupstyle(_:).json │ ├── distortioneffect(_:maxsampleoffset:isenabled:).json │ ├── documentbrowsercontextmenu(_:).json │ ├── draggable(_:).json │ ├── draggable(_:preview:).json │ ├── drawinggroup(opaque:colormode:).json │ ├── dropdestination(for:action:istargeted:).json │ ├── dynamictypesize(_:).json │ ├── edgesignoringsafearea(_:).json │ ├── environment(_:).json │ ├── environment(_:_:).json │ ├── environmentobject(_:).json │ ├── filedialogbrowseroptions(_:).json │ ├── filedialogconfirmationlabel(_:)-3yuzg.json │ ├── filedialogconfirmationlabel(_:)-5zboc.json │ ├── filedialogconfirmationlabel(_:)-9cq8t.json │ ├── filedialogcustomizationid(_:).json │ ├── filedialogdefaultdirectory(_:).json │ ├── filedialogimportsunresolvedaliases(_:).json │ ├── filedialogmessage(_:)-30uuv.json │ ├── filedialogmessage(_:)-3zexu.json │ ├── filedialogmessage(_:)-7p2uc.json │ ├── filedialogurlenabled(_:).json │ ├── fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-9iwzf.json │ ├── fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-taj5.json │ ├── fileexporter(ispresented:document:contenttypes:defaultfilename:oncompletion:oncancellation:)-5wcxy.json │ ├── fileexporter(ispresented:document:contenttypes:defaultfilename:oncompletion:oncancellation:)-624sk.json │ ├── fileexporter(ispresented:documents:contenttype:oncompletion:)-11sz4.json │ ├── fileexporter(ispresented:documents:contenttype:oncompletion:)-p3n0.json │ ├── fileexporter(ispresented:documents:contenttypes:oncompletion:oncancellation:)-4wire.json │ ├── fileexporter(ispresented:documents:contenttypes:oncompletion:oncancellation:)-81z55.json │ ├── fileexporter(ispresented:item:contenttypes:defaultfilename:oncompletion:oncancellation:).json │ ├── fileexporter(ispresented:items:contenttypes:oncompletion:oncancellation:).json │ ├── fileexporterfilenamelabel(_:)-92ewg.json │ ├── fileexporterfilenamelabel(_:)-9uabk.json │ ├── fileexporterfilenamelabel(_:)-duqm.json │ ├── fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:).json │ ├── fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:oncancellation:).json │ ├── fileimporter(ispresented:allowedcontenttypes:oncompletion:).json │ ├── filemover(ispresented:file:oncompletion:).json │ ├── filemover(ispresented:file:oncompletion:oncancellation:).json │ ├── filemover(ispresented:files:oncompletion:).json │ ├── filemover(ispresented:files:oncompletion:oncancellation:).json │ ├── finddisabled(_:).json │ ├── findnavigator(ispresented:).json │ ├── fixedsize().json │ ├── fixedsize(horizontal:vertical:).json │ ├── flipsforrighttoleftlayoutdirection(_:).json │ ├── focusable(_:).json │ ├── focusable(_:interactions:).json │ ├── focused(_:).json │ ├── focused(_:equals:).json │ ├── focusedobject(_:)-2noyt.json │ ├── focusedobject(_:)-84lwu.json │ ├── focusedsceneobject(_:)-3e883.json │ ├── focusedsceneobject(_:)-7xguk.json │ ├── focusedscenevalue(_:).json │ ├── focusedscenevalue(_:_:)-3ifjw.json │ ├── focusedscenevalue(_:_:)-8rp07.json │ ├── focusedvalue(_:).json │ ├── focusedvalue(_:_:)-1ti3z.json │ ├── focusedvalue(_:_:)-2f74z.json │ ├── focuseffectdisabled(_:).json │ ├── font(_:).json │ ├── fontdesign(_:).json │ ├── fontweight(_:).json │ ├── fontwidth(_:).json │ ├── foregroundcolor(_:).json │ ├── foregroundstyle(_:).json │ ├── foregroundstyle(_:_:).json │ ├── foregroundstyle(_:_:_:).json │ ├── formstyle(_:).json │ ├── frame().json │ ├── frame(minwidth:idealwidth:maxwidth:minheight:idealheight:maxheight:alignment:).json │ ├── frame(width:height:alignment:).json │ ├── fullscreencover(ispresented:ondismiss:content:).json │ ├── fullscreencover(item:ondismiss:content:).json │ ├── gaugestyle(_:).json │ ├── geometrygroup().json │ ├── gesture(_:).json │ ├── gesture(_:including:).json │ ├── gesture(_:isenabled:).json │ ├── gesture(_:name:isenabled:).json │ ├── grayscale(_:).json │ ├── gridcellanchor(_:).json │ ├── gridcellcolumns(_:).json │ ├── gridcellunsizedaxes(_:).json │ ├── gridcolumnalignment(_:).json │ ├── groupboxstyle(_:).json │ ├── handgestureshortcut(_:isenabled:).json │ ├── handlesexternalevents(preferring:allowing:).json │ ├── handlingstacktabbartoolbarbehavior(inputnavigationnodetype:).json │ ├── headerprominence(_:).json │ ├── help(_:)-19zxv.json │ ├── help(_:)-4zblh.json │ ├── help(_:)-7ts4j.json │ ├── hidden().json │ ├── highprioritygesture(_:including:).json │ ├── highprioritygesture(_:isenabled:).json │ ├── highprioritygesture(_:name:isenabled:).json │ ├── hovereffect(_:).json │ ├── hovereffect(_:isenabled:)-3itb7.json │ ├── hovereffect(_:isenabled:)-7qpmz.json │ ├── hovereffectdisabled(_:).json │ ├── huerotation(_:).json │ ├── id(_:).json │ ├── ignoressafearea(_:edges:).json │ ├── imagescale(_:).json │ ├── indexviewstyle(_:).json │ ├── init(node:).json │ ├── inspector(ispresented:content:).json │ ├── inspectorcolumnwidth(_:).json │ ├── inspectorcolumnwidth(min:ideal:max:).json │ ├── interactionactivitytrackingtag(_:).json │ ├── interactivedismissdisabled(_:).json │ ├── invalidatablecontent(_:).json │ ├── italic(_:).json │ ├── itemprovider(_:).json │ ├── kerning(_:).json │ ├── keyboardshortcut(_:)-363rd.json │ ├── keyboardshortcut(_:)-cx1i.json │ ├── keyboardshortcut(_:modifiers:).json │ ├── keyboardshortcut(_:modifiers:localization:).json │ ├── keyboardtype(_:).json │ ├── keyframeanimator(initialvalue:repeating:content:keyframes:).json │ ├── keyframeanimator(initialvalue:trigger:content:keyframes:).json │ ├── labeledcontentstyle(_:).json │ ├── labelshidden().json │ ├── labelstyle(_:).json │ ├── labelsvisibility(_:).json │ ├── layereffect(_:maxsampleoffset:isenabled:).json │ ├── layoutdirectionbehavior(_:).json │ ├── layoutpriority(_:).json │ ├── layoutvalue(key:value:).json │ ├── linelimit(_:)-4599z.json │ ├── linelimit(_:)-4z9gv.json │ ├── linelimit(_:)-62dw2.json │ ├── linelimit(_:)-8gvi3.json │ ├── linelimit(_:reservesspace:).json │ ├── linespacing(_:).json │ ├── listitemtint(_:)-2dvjc.json │ ├── listitemtint(_:)-5dr0u.json │ ├── listrowbackground(_:).json │ ├── listrowinsets(_:).json │ ├── listrowseparator(_:edges:).json │ ├── listrowseparatortint(_:edges:).json │ ├── listrowspacing(_:).json │ ├── listsectionseparator(_:edges:).json │ ├── listsectionseparatortint(_:edges:).json │ ├── listsectionspacing(_:)-2wb1.json │ ├── listsectionspacing(_:)-2y431.json │ ├── liststyle(_:).json │ ├── luminancetoalpha().json │ ├── mask(_:).json │ ├── mask(alignment:_:).json │ ├── matchedgeometryeffect(id:in:properties:anchor:issource:).json │ ├── matchedtransitionsource(id:in:).json │ ├── matchedtransitionsource(id:in:configuration:).json │ ├── materialactiveappearance(_:).json │ ├── menuactiondismissbehavior(_:).json │ ├── menuindicator(_:).json │ ├── menuorder(_:).json │ ├── menustyle(_:).json │ ├── minimumscalefactor(_:).json │ ├── modifier(_:).json │ ├── monospaced(_:).json │ ├── monospaceddigit().json │ ├── movedisabled(_:).json │ ├── multilinetextalignment(_:).json │ ├── navigationbarbackbuttonhidden(_:).json │ ├── navigationbarhidden(_:).json │ ├── navigationbaritems(leading:).json │ ├── navigationbaritems(leading:trailing:).json │ ├── navigationbaritems(trailing:).json │ ├── navigationbartitle(_:)-19vck.json │ ├── navigationbartitle(_:)-1komk.json │ ├── navigationbartitle(_:)-8c35l.json │ ├── navigationbartitle(_:displaymode:)-3euxo.json │ ├── navigationbartitle(_:displaymode:)-7xrrp.json │ ├── navigationbartitle(_:displaymode:)-8zlgl.json │ ├── navigationbartitledisplaymode(_:).json │ ├── navigationdestination(for:destination:).json │ ├── navigationdestination(ispresented:destination:).json │ ├── navigationdestination(item:destination:).json │ ├── navigationdocument(_:).json │ ├── navigationdocument(_:preview:)-3drf2.json │ ├── navigationdocument(_:preview:)-6y4ne.json │ ├── navigationdocument(_:preview:)-73qe2.json │ ├── navigationdocument(_:preview:)-o47s.json │ ├── navigationenvironmenttriggerhandler(_:).json │ ├── navigationsplitviewcolumnwidth(_:).json │ ├── navigationsplitviewcolumnwidth(min:ideal:max:).json │ ├── navigationsplitviewstyle(_:).json │ ├── navigationtitle(_:)-56toq.json │ ├── navigationtitle(_:)-6smds.json │ ├── navigationtitle(_:)-7hig1.json │ ├── navigationtitle(_:)-9i1ey.json │ ├── navigationtitle(_:)-9sugy.json │ ├── navigationtransition(_:).json │ ├── navigationviewstyle(_:).json │ ├── offset(_:).json │ ├── offset(x:y:).json │ ├── onappear(perform:).json │ ├── onchange(of:initial:_:)-371if.json │ ├── onchange(of:initial:_:)-8o5al.json │ ├── onchange(of:perform:).json │ ├── oncontinueuseractivity(_:perform:).json │ ├── oncontinuoushover(coordinatespace:perform:).json │ ├── ondisappear(perform:).json │ ├── ondrag(_:).json │ ├── ondrag(_:preview:).json │ ├── ondrop(of:delegate:)-8bc0s.json │ ├── ondrop(of:delegate:)-8xujv.json │ ├── ondrop(of:istargeted:perform:)-7cs21.json │ ├── ondrop(of:istargeted:perform:)-8yxuc.json │ ├── ondrop(of:istargeted:perform:)-92z4b.json │ ├── ondrop(of:istargeted:perform:)-985rs.json │ ├── ongeometrychange(for:of:action:)-5biuf.json │ ├── ongeometrychange(for:of:action:)-6vl0k.json │ ├── onhover(perform:).json │ ├── onkeypress(_:action:).json │ ├── onkeypress(_:phases:action:).json │ ├── onkeypress(characters:phases:action:).json │ ├── onkeypress(keys:phases:action:).json │ ├── onkeypress(phases:action:).json │ ├── onlongpressgesture(minimumduration:maximumdistance:perform:onpressingchanged:).json │ ├── onlongpressgesture(minimumduration:maximumdistance:pressing:perform:).json │ ├── onlongpressgesture(minimumduration:perform:onpressingchanged:).json │ ├── onlongpressgesture(minimumduration:pressing:perform:).json │ ├── onopenurl(perform:).json │ ├── onpencildoubletap(perform:).json │ ├── onpencilsqueeze(perform:).json │ ├── onpreferencechange(_:perform:).json │ ├── onreceive(_:perform:).json │ ├── onscrollgeometrychange(for:of:action:).json │ ├── onscrollphasechange(_:)-4fxn1.json │ ├── onscrollphasechange(_:)-77swf.json │ ├── onscrolltargetvisibilitychange(idtype:threshold:_:).json │ ├── onscrollvisibilitychange(threshold:_:).json │ ├── onsubmit(of:_:).json │ ├── ontapgesture(count:coordinatespace:perform:).json │ ├── ontapgesture(count:perform:).json │ ├── opacity(_:).json │ ├── overlay(_:alignment:).json │ ├── overlay(_:ignoressafeareaedges:).json │ ├── overlay(_:in:fillstyle:).json │ ├── overlay(alignment:content:).json │ ├── overlaypreferencevalue(_:_:).json │ ├── overlaypreferencevalue(_:alignment:_:).json │ ├── padding(_:)-6y3ez.json │ ├── padding(_:)-9j81u.json │ ├── padding(_:_:).json │ ├── paletteselectioneffect(_:).json │ ├── persistentsystemoverlays(_:).json │ ├── phaseanimator(_:content:animation:).json │ ├── phaseanimator(_:trigger:content:animation:).json │ ├── pickerstyle(_:).json │ ├── popover(ispresented:attachmentanchor:arrowedge:content:).json │ ├── popover(item:attachmentanchor:arrowedge:content:).json │ ├── position(_:).json │ ├── position(x:y:).json │ ├── preference(key:value:).json │ ├── preferredcolorscheme(_:).json │ ├── presentationbackground(_:).json │ ├── presentationbackground(alignment:content:).json │ ├── presentationbackgroundinteraction(_:).json │ ├── presentationcompactadaptation(_:).json │ ├── presentationcompactadaptation(horizontal:vertical:).json │ ├── presentationcontentinteraction(_:).json │ ├── presentationcornerradius(_:).json │ ├── presentationdetents(_:).json │ ├── presentationdetents(_:selection:).json │ ├── presentationdragindicator(_:).json │ ├── presentationsizing(_:).json │ ├── presentingnavigationsource(id:).json │ ├── previewcontext(_:).json │ ├── previewdevice(_:).json │ ├── previewdisplayname(_:).json │ ├── previewinterfaceorientation(_:).json │ ├── previewlayout(_:).json │ ├── privacysensitive(_:).json │ ├── progressviewstyle(_:).json │ ├── projectioneffect(_:).json │ ├── redacted(reason:).json │ ├── refreshable(action:).json │ ├── registercustompresentablenavigationnodes(_:).json │ ├── renameaction(_:)-11jdw.json │ ├── renameaction(_:)-2tqbh.json │ ├── replacedisabled(_:).json │ ├── rotation3deffect(_:axis:anchor:anchorz:perspective:).json │ ├── rotationeffect(_:anchor:).json │ ├── safeareainset(edge:alignment:spacing:content:)-2u0ho.json │ ├── safeareainset(edge:alignment:spacing:content:)-7fvc2.json │ ├── safeareapadding(_:)-8y1p1.json │ ├── safeareapadding(_:)-ylgx.json │ ├── safeareapadding(_:_:).json │ ├── saturation(_:).json │ ├── scaledtofill().json │ ├── scaledtofit().json │ ├── scaleeffect(_:anchor:)-4xoq2.json │ ├── scaleeffect(_:anchor:)-af7v.json │ ├── scaleeffect(x:y:anchor:).json │ ├── scenepadding(_:).json │ ├── scenepadding(_:edges:).json │ ├── scrollbouncebehavior(_:axes:).json │ ├── scrollclipdisabled(_:).json │ ├── scrollcontentbackground(_:).json │ ├── scrolldisabled(_:).json │ ├── scrolldismisseskeyboard(_:).json │ ├── scrollindicators(_:axes:).json │ ├── scrollindicatorsflash(onappear:).json │ ├── scrollindicatorsflash(trigger:).json │ ├── scrollinputbehavior(_:for:).json │ ├── scrollposition(_:anchor:).json │ ├── scrollposition(id:anchor:).json │ ├── scrolltargetbehavior(_:).json │ ├── scrolltargetlayout(isenabled:).json │ ├── scrolltransition(_:axis:transition:).json │ ├── scrolltransition(topleading:bottomtrailing:axis:transition:).json │ ├── searchable(text:editabletokens:ispresented:placement:prompt:token:)-1u39c.json │ ├── searchable(text:editabletokens:ispresented:placement:prompt:token:)-4brij.json │ ├── searchable(text:editabletokens:ispresented:placement:prompt:token:)-5ma11.json │ ├── searchable(text:editabletokens:placement:prompt:token:)-47nsv.json │ ├── searchable(text:editabletokens:placement:prompt:token:)-5w6u.json │ ├── searchable(text:editabletokens:placement:prompt:token:)-8u9dx.json │ ├── searchable(text:ispresented:placement:prompt:)-3377n.json │ ├── searchable(text:ispresented:placement:prompt:)-76shy.json │ ├── searchable(text:ispresented:placement:prompt:)-999x1.json │ ├── searchable(text:placement:prompt:)-12zgf.json │ ├── searchable(text:placement:prompt:)-48su0.json │ ├── searchable(text:placement:prompt:)-8ik62.json │ ├── searchable(text:placement:prompt:suggestions:)-67xea.json │ ├── searchable(text:placement:prompt:suggestions:)-96xw9.json │ ├── searchable(text:placement:prompt:suggestions:)-vxvv.json │ ├── searchable(text:tokens:ispresented:placement:prompt:token:)-7eyrx.json │ ├── searchable(text:tokens:ispresented:placement:prompt:token:)-8s4tk.json │ ├── searchable(text:tokens:ispresented:placement:prompt:token:)-9iylv.json │ ├── searchable(text:tokens:placement:prompt:token:)-7jp7h.json │ ├── searchable(text:tokens:placement:prompt:token:)-7kur5.json │ ├── searchable(text:tokens:placement:prompt:token:)-9ouaw.json │ ├── searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-1ubfq.json │ ├── searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-40pa6.json │ ├── searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-7vbqm.json │ ├── searchable(text:tokens:suggestedtokens:placement:prompt:token:)-1a65g.json │ ├── searchable(text:tokens:suggestedtokens:placement:prompt:token:)-37pcw.json │ ├── searchable(text:tokens:suggestedtokens:placement:prompt:token:)-ta4v.json │ ├── searchcompletion(_:).json │ ├── searchdictationbehavior(_:).json │ ├── searchfocused(_:).json │ ├── searchfocused(_:equals:).json │ ├── searchpresentationtoolbarbehavior(_:).json │ ├── searchscopes(_:activation:_:).json │ ├── searchscopes(_:scopes:).json │ ├── searchsuggestions(_:).json │ ├── searchsuggestions(_:for:).json │ ├── sectionactions(content:).json │ ├── selectiondisabled(_:).json │ ├── sensoryfeedback(_:trigger:).json │ ├── sensoryfeedback(_:trigger:condition:).json │ ├── sensoryfeedback(trigger:_:).json │ ├── shadow(color:radius:x:y:).json │ ├── sheet(ispresented:ondismiss:content:).json │ ├── sheet(item:ondismiss:content:).json │ ├── simultaneousgesture(_:including:).json │ ├── simultaneousgesture(_:isenabled:).json │ ├── simultaneousgesture(_:name:isenabled:).json │ ├── speechadjustedpitch(_:).json │ ├── speechalwaysincludespunctuation(_:).json │ ├── speechannouncementsqueued(_:).json │ ├── speechspellsoutcharacters(_:).json │ ├── springloadingbehavior(_:).json │ ├── statusbar(hidden:).json │ ├── statusbarhidden(_:).json │ ├── strikethrough(_:pattern:color:).json │ ├── submitlabel(_:).json │ ├── submitscope(_:).json │ ├── swipeactions(edge:allowsfullswipe:content:).json │ ├── symboleffect(_:options:isactive:).json │ ├── symboleffect(_:options:value:).json │ ├── symboleffectsremoved(_:).json │ ├── symbolrenderingmode(_:).json │ ├── symbolvariant(_:).json │ ├── tabitem(_:).json │ ├── tablecolumnheaders(_:).json │ ├── tablestyle(_:).json │ ├── tabviewcustomization(_:).json │ ├── tabviewsidebarbottombar(content:).json │ ├── tabviewsidebarfooter(content:).json │ ├── tabviewsidebarheader(content:).json │ ├── tabviewstyle(_:).json │ ├── tag(_:includeoptional:).json │ ├── task(id:priority:_:).json │ ├── task(priority:_:).json │ ├── textcase(_:).json │ ├── textcontenttype(_:).json │ ├── texteditorstyle(_:).json │ ├── textfieldstyle(_:).json │ ├── textinputautocapitalization(_:).json │ ├── textrenderer(_:).json │ ├── textscale(_:isenabled:).json │ ├── textselection(_:).json │ ├── textselectionaffinity(_:).json │ ├── tint(_:).json │ ├── togglestyle(_:).json │ ├── toolbar(_:for:).json │ ├── toolbar(content:)-597wn.json │ ├── toolbar(content:)-5hum7.json │ ├── toolbar(id:content:).json │ ├── toolbar(removing:).json │ ├── toolbarbackground(_:for:).json │ ├── toolbarbackgroundvisibility(_:for:).json │ ├── toolbarcolorscheme(_:for:).json │ ├── toolbarforegroundstyle(_:for:).json │ ├── toolbarrole(_:).json │ ├── toolbartitledisplaymode(_:).json │ ├── toolbartitlemenu(content:).json │ ├── toolbarvisibility(_:for:).json │ ├── tracking(_:).json │ ├── transaction(_:).json │ ├── transaction(_:body:).json │ ├── transaction(value:_:).json │ ├── transformanchorpreference(key:value:transform:).json │ ├── transformeffect(_:).json │ ├── transformenvironment(_:transform:).json │ ├── transformpreference(_:_:).json │ ├── transition(_:).json │ ├── truncationmode(_:).json │ ├── typeselectequivalent(_:)-27m3x.json │ ├── typeselectequivalent(_:)-5zhr5.json │ ├── typeselectequivalent(_:)-7mlv3.json │ ├── typesettinglanguage(_:isenabled:)-63bme.json │ ├── typesettinglanguage(_:isenabled:)-8dflo.json │ ├── underline(_:pattern:color:).json │ ├── unredacted().json │ ├── useractivity(_:element:_:).json │ ├── useractivity(_:isactive:_:).json │ ├── view-implementations.json │ ├── visualeffect(_:).json │ ├── windowtoolbarfullscreenvisibility(_:).json │ ├── writingtoolsbehavior(_:).json │ └── zindex(_:).json │ ├── navigationwindow.json │ ├── navigationwindow │ ├── accentcolor(_:).json │ ├── accessibility(activationpoint:)-1g3gh.json │ ├── accessibility(activationpoint:)-3ggf5.json │ ├── accessibility(addtraits:).json │ ├── accessibility(hidden:).json │ ├── accessibility(hint:).json │ ├── accessibility(identifier:).json │ ├── accessibility(inputlabels:).json │ ├── accessibility(label:).json │ ├── accessibility(removetraits:).json │ ├── accessibility(selectionidentifier:).json │ ├── accessibility(sortpriority:).json │ ├── accessibility(value:).json │ ├── accessibilityaction(_:_:).json │ ├── accessibilityaction(action:label:).json │ ├── accessibilityaction(named:_:)-1uni4.json │ ├── accessibilityaction(named:_:)-4h3dh.json │ ├── accessibilityaction(named:_:)-p51z.json │ ├── accessibilityactions(_:).json │ ├── accessibilityactions(category:_:).json │ ├── accessibilityactivationpoint(_:)-9189b.json │ ├── accessibilityactivationpoint(_:)-9biv0.json │ ├── accessibilityactivationpoint(_:isenabled:)-66j62.json │ ├── accessibilityactivationpoint(_:isenabled:)-7okfw.json │ ├── accessibilityaddtraits(_:).json │ ├── accessibilityadjustableaction(_:).json │ ├── accessibilitychartdescriptor(_:).json │ ├── accessibilitychildren(children:).json │ ├── accessibilitycustomcontent(_:_:importance:)-1b6gp.json │ ├── accessibilitycustomcontent(_:_:importance:)-1osgl.json │ ├── accessibilitycustomcontent(_:_:importance:)-2x8l2.json │ ├── accessibilitycustomcontent(_:_:importance:)-3ade0.json │ ├── accessibilitycustomcontent(_:_:importance:)-4mmcr.json │ ├── accessibilitycustomcontent(_:_:importance:)-7lhik.json │ ├── accessibilitycustomcontent(_:_:importance:)-7zfce.json │ ├── accessibilitycustomcontent(_:_:importance:)-9vnb2.json │ ├── accessibilitydirecttouch(_:options:).json │ ├── accessibilitydragpoint(_:description:)-10qd8.json │ ├── accessibilitydragpoint(_:description:)-1eaub.json │ ├── accessibilitydragpoint(_:description:)-93i93.json │ ├── accessibilitydragpoint(_:description:isenabled:)-1t8a2.json │ ├── accessibilitydragpoint(_:description:isenabled:)-639pc.json │ ├── accessibilitydragpoint(_:description:isenabled:)-924gq.json │ ├── accessibilitydroppoint(_:description:)-438k8.json │ ├── accessibilitydroppoint(_:description:)-5vybi.json │ ├── accessibilitydroppoint(_:description:)-8w9pr.json │ ├── accessibilitydroppoint(_:description:isenabled:)-1rd41.json │ ├── accessibilitydroppoint(_:description:isenabled:)-516fp.json │ ├── accessibilitydroppoint(_:description:isenabled:)-q7oa.json │ ├── accessibilityelement(children:).json │ ├── accessibilityfocused(_:).json │ ├── accessibilityfocused(_:equals:).json │ ├── accessibilityheading(_:).json │ ├── accessibilityhidden(_:).json │ ├── accessibilityhidden(_:isenabled:).json │ ├── accessibilityhint(_:)-3oaml.json │ ├── accessibilityhint(_:)-5ybi.json │ ├── accessibilityhint(_:)-kap5.json │ ├── accessibilityhint(_:isenabled:)-1uvvy.json │ ├── accessibilityhint(_:isenabled:)-220qm.json │ ├── accessibilityhint(_:isenabled:)-8pu96.json │ ├── accessibilityidentifier(_:).json │ ├── accessibilityidentifier(_:isenabled:).json │ ├── accessibilityignoresinvertcolors(_:).json │ ├── accessibilityinputlabels(_:)-3s179.json │ ├── accessibilityinputlabels(_:)-7e33t.json │ ├── accessibilityinputlabels(_:)-841q3.json │ ├── accessibilityinputlabels(_:isenabled:)-7db5i.json │ ├── accessibilityinputlabels(_:isenabled:)-7hzid.json │ ├── accessibilityinputlabels(_:isenabled:)-8ys9.json │ ├── accessibilitylabel(_:)-2g77q.json │ ├── accessibilitylabel(_:)-52ulj.json │ ├── accessibilitylabel(_:)-6x3g4.json │ ├── accessibilitylabel(_:isenabled:)-1manw.json │ ├── accessibilitylabel(_:isenabled:)-42j71.json │ ├── accessibilitylabel(_:isenabled:)-5lzza.json │ ├── accessibilitylabel(content:).json │ ├── accessibilitylabeledpair(role:id:in:).json │ ├── accessibilitylinkedgroup(id:in:).json │ ├── accessibilityremovetraits(_:).json │ ├── accessibilityrepresentation(representation:).json │ ├── accessibilityrespondstouserinteraction(_:).json │ ├── accessibilityrespondstouserinteraction(_:isenabled:).json │ ├── accessibilityrotor(_:entries:)-1l9gk.json │ ├── accessibilityrotor(_:entries:)-4fqs6.json │ ├── accessibilityrotor(_:entries:)-7dcbw.json │ ├── accessibilityrotor(_:entries:)-8ey8h.json │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-1jv3h.json │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-39iaq.json │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-3eite.json │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-7wezb.json │ ├── accessibilityrotor(_:entries:entrylabel:)-1025k.json │ ├── accessibilityrotor(_:entries:entrylabel:)-1seak.json │ ├── accessibilityrotor(_:entries:entrylabel:)-3fjbx.json │ ├── accessibilityrotor(_:entries:entrylabel:)-3gy6a.json │ ├── accessibilityrotor(_:textranges:)-4blfj.json │ ├── accessibilityrotor(_:textranges:)-6qwgd.json │ ├── accessibilityrotor(_:textranges:)-83cbr.json │ ├── accessibilityrotor(_:textranges:)-90mrn.json │ ├── accessibilityrotorentry(id:in:).json │ ├── accessibilityscrollaction(_:).json │ ├── accessibilityshowslargecontentviewer().json │ ├── accessibilityshowslargecontentviewer(_:).json │ ├── accessibilitysortpriority(_:).json │ ├── accessibilitytextcontenttype(_:).json │ ├── accessibilityvalue(_:)-3tryb.json │ ├── accessibilityvalue(_:)-7i3kd.json │ ├── accessibilityvalue(_:)-87jgm.json │ ├── accessibilityvalue(_:isenabled:)-2avw2.json │ ├── accessibilityvalue(_:isenabled:)-926dd.json │ ├── accessibilityvalue(_:isenabled:)-9ekue.json │ ├── accessibilityzoomaction(_:).json │ ├── actionsheet(ispresented:content:).json │ ├── actionsheet(item:content:).json │ ├── alert(_:ispresented:actions:)-296o3.json │ ├── alert(_:ispresented:actions:)-3izkl.json │ ├── alert(_:ispresented:actions:)-7cred.json │ ├── alert(_:ispresented:actions:message:)-3ca0n.json │ ├── alert(_:ispresented:actions:message:)-8k3c6.json │ ├── alert(_:ispresented:actions:message:)-99pij.json │ ├── alert(_:ispresented:presenting:actions:)-70iic.json │ ├── alert(_:ispresented:presenting:actions:)-73o29.json │ ├── alert(_:ispresented:presenting:actions:)-y1jc.json │ ├── alert(_:ispresented:presenting:actions:message:)-3z9m1.json │ ├── alert(_:ispresented:presenting:actions:message:)-7toej.json │ ├── alert(_:ispresented:presenting:actions:message:)-9i159.json │ ├── alert(ispresented:content:).json │ ├── alert(ispresented:error:actions:).json │ ├── alert(ispresented:error:actions:message:).json │ ├── alert(item:content:).json │ ├── alignmentguide(_:computevalue:)-618pk.json │ ├── alignmentguide(_:computevalue:)-9i1mo.json │ ├── alloweddynamicrange(_:).json │ ├── allowshittesting(_:).json │ ├── allowstightening(_:).json │ ├── allowswindowactivationevents(_:).json │ ├── anchorpreference(key:value:transform:).json │ ├── animation(_:).json │ ├── animation(_:body:).json │ ├── animation(_:value:).json │ ├── aspectratio(_:contentmode:)-5wlen.json │ ├── aspectratio(_:contentmode:)-69qcn.json │ ├── autocapitalization(_:).json │ ├── autocorrectiondisabled(_:).json │ ├── background(_:alignment:).json │ ├── background(_:ignoressafeareaedges:).json │ ├── background(_:in:fillstyle:)-23erj.json │ ├── background(_:in:fillstyle:)-9o2lb.json │ ├── background(alignment:content:).json │ ├── background(ignoressafeareaedges:).json │ ├── background(in:fillstyle:)-6bgzt.json │ ├── background(in:fillstyle:)-7h4jp.json │ ├── backgroundpreferencevalue(_:_:).json │ ├── backgroundpreferencevalue(_:alignment:_:).json │ ├── backgroundstyle(_:).json │ ├── badge(_:)-1ec9s.json │ ├── badge(_:)-24js6.json │ ├── badge(_:)-3yfkp.json │ ├── badge(_:)-6bf3.json │ ├── badgeprominence(_:).json │ ├── baselineoffset(_:).json │ ├── blendmode(_:).json │ ├── blur(radius:opaque:).json │ ├── body.json │ ├── bold(_:).json │ ├── border(_:width:).json │ ├── brightness(_:).json │ ├── buttonbordershape(_:).json │ ├── buttonrepeatbehavior(_:).json │ ├── buttonstyle(_:)-5g3zr.json │ ├── buttonstyle(_:)-6n6r5.json │ ├── clipped(antialiased:).json │ ├── clipshape(_:style:).json │ ├── coloreffect(_:isenabled:).json │ ├── colorinvert().json │ ├── colormultiply(_:).json │ ├── colorscheme(_:).json │ ├── compositinggroup().json │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-2z0b3.json │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-ch3c.json │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-lzjy.json │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-1jskz.json │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-7r56h.json │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-yn2t.json │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-32wiu.json │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-5w106.json │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-72x7s.json │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-16z3z.json │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-7vz1j.json │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-8brso.json │ ├── containerbackground(_:for:).json │ ├── containerbackground(for:alignment:content:).json │ ├── containerrelativeframe(_:alignment:).json │ ├── containerrelativeframe(_:alignment:_:).json │ ├── containerrelativeframe(_:count:span:spacing:alignment:).json │ ├── containershape(_:).json │ ├── containervalue(_:_:).json │ ├── contentmargins(_:_:for:)-214sf.json │ ├── contentmargins(_:_:for:)-871zg.json │ ├── contentmargins(_:for:).json │ ├── contentshape(_:_:eofill:).json │ ├── contentshape(_:eofill:).json │ ├── contenttransition(_:).json │ ├── contextmenu(_:).json │ ├── contextmenu(forselectiontype:menu:primaryaction:).json │ ├── contextmenu(menuitems:).json │ ├── contextmenu(menuitems:preview:).json │ ├── contrast(_:).json │ ├── controlgroupstyle(_:).json │ ├── controlsize(_:).json │ ├── coordinatespace(_:).json │ ├── coordinatespace(name:).json │ ├── cornerradius(_:antialiased:).json │ ├── datepickerstyle(_:).json │ ├── defaultadaptabletabbarplacement(_:).json │ ├── defaultappstorage(_:).json │ ├── defaultfocus(_:_:priority:).json │ ├── defaulthovereffect(_:)-6vhpk.json │ ├── defaulthovereffect(_:)-8c7zm.json │ ├── defaultscrollanchor(_:).json │ ├── defaultscrollanchor(_:for:).json │ ├── deferssystemgestures(on:).json │ ├── deletedisabled(_:).json │ ├── dialogicon(_:).json │ ├── dialogsuppressiontoggle(_:issuppressed:)-3lw49.json │ ├── dialogsuppressiontoggle(_:issuppressed:)-4zhic.json │ ├── dialogsuppressiontoggle(_:issuppressed:)-5s5td.json │ ├── dialogsuppressiontoggle(issuppressed:).json │ ├── disableautocorrection(_:).json │ ├── disabled(_:).json │ ├── disclosuregroupstyle(_:).json │ ├── distortioneffect(_:maxsampleoffset:isenabled:).json │ ├── documentbrowsercontextmenu(_:).json │ ├── draggable(_:).json │ ├── draggable(_:preview:).json │ ├── drawinggroup(opaque:colormode:).json │ ├── dropdestination(for:action:istargeted:).json │ ├── dynamictypesize(_:).json │ ├── edgesignoringsafearea(_:).json │ ├── environment(_:).json │ ├── environment(_:_:).json │ ├── environmentobject(_:).json │ ├── filedialogbrowseroptions(_:).json │ ├── filedialogconfirmationlabel(_:)-6r4mf.json │ ├── filedialogconfirmationlabel(_:)-7cre3.json │ ├── filedialogconfirmationlabel(_:)-zxg4.json │ ├── filedialogcustomizationid(_:).json │ ├── filedialogdefaultdirectory(_:).json │ ├── filedialogimportsunresolvedaliases(_:).json │ ├── filedialogmessage(_:)-16bx5.json │ ├── filedialogmessage(_:)-30u19.json │ ├── filedialogmessage(_:)-7k3ll.json │ ├── filedialogurlenabled(_:).json │ ├── fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-2y03i.json │ ├── fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-3shne.json │ ├── fileexporter(ispresented:document:contenttypes:defaultfilename:oncompletion:oncancellation:)-49akt.json │ ├── fileexporter(ispresented:document:contenttypes:defaultfilename:oncompletion:oncancellation:)-5g299.json │ ├── fileexporter(ispresented:documents:contenttype:oncompletion:)-4lwbl.json │ ├── fileexporter(ispresented:documents:contenttype:oncompletion:)-7yx6z.json │ ├── fileexporter(ispresented:documents:contenttypes:oncompletion:oncancellation:)-5pknt.json │ ├── fileexporter(ispresented:documents:contenttypes:oncompletion:oncancellation:)-8geyb.json │ ├── fileexporter(ispresented:item:contenttypes:defaultfilename:oncompletion:oncancellation:).json │ ├── fileexporter(ispresented:items:contenttypes:oncompletion:oncancellation:).json │ ├── fileexporterfilenamelabel(_:)-3alym.json │ ├── fileexporterfilenamelabel(_:)-4z1q5.json │ ├── fileexporterfilenamelabel(_:)-kbvh.json │ ├── fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:).json │ ├── fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:oncancellation:).json │ ├── fileimporter(ispresented:allowedcontenttypes:oncompletion:).json │ ├── filemover(ispresented:file:oncompletion:).json │ ├── filemover(ispresented:file:oncompletion:oncancellation:).json │ ├── filemover(ispresented:files:oncompletion:).json │ ├── filemover(ispresented:files:oncompletion:oncancellation:).json │ ├── finddisabled(_:).json │ ├── findnavigator(ispresented:).json │ ├── fixedsize().json │ ├── fixedsize(horizontal:vertical:).json │ ├── flipsforrighttoleftlayoutdirection(_:).json │ ├── focusable(_:).json │ ├── focusable(_:interactions:).json │ ├── focused(_:).json │ ├── focused(_:equals:).json │ ├── focusedobject(_:)-2lczo.json │ ├── focusedobject(_:)-4fl23.json │ ├── focusedsceneobject(_:)-5d2o8.json │ ├── focusedsceneobject(_:)-7wg2a.json │ ├── focusedscenevalue(_:).json │ ├── focusedscenevalue(_:_:)-6437.json │ ├── focusedscenevalue(_:_:)-8zua6.json │ ├── focusedvalue(_:).json │ ├── focusedvalue(_:_:)-31xwb.json │ ├── focusedvalue(_:_:)-8qmbk.json │ ├── focuseffectdisabled(_:).json │ ├── font(_:).json │ ├── fontdesign(_:).json │ ├── fontweight(_:).json │ ├── fontwidth(_:).json │ ├── foregroundcolor(_:).json │ ├── foregroundstyle(_:).json │ ├── foregroundstyle(_:_:).json │ ├── foregroundstyle(_:_:_:).json │ ├── formstyle(_:).json │ ├── frame().json │ ├── frame(minwidth:idealwidth:maxwidth:minheight:idealheight:maxheight:alignment:).json │ ├── frame(width:height:alignment:).json │ ├── fullscreencover(ispresented:ondismiss:content:).json │ ├── fullscreencover(item:ondismiss:content:).json │ ├── gaugestyle(_:).json │ ├── geometrygroup().json │ ├── gesture(_:).json │ ├── gesture(_:including:).json │ ├── gesture(_:isenabled:).json │ ├── gesture(_:name:isenabled:).json │ ├── grayscale(_:).json │ ├── gridcellanchor(_:).json │ ├── gridcellcolumns(_:).json │ ├── gridcellunsizedaxes(_:).json │ ├── gridcolumnalignment(_:).json │ ├── groupboxstyle(_:).json │ ├── handgestureshortcut(_:isenabled:).json │ ├── handlesexternalevents(preferring:allowing:).json │ ├── handlingstacktabbartoolbarbehavior(inputnavigationnodetype:).json │ ├── headerprominence(_:).json │ ├── help(_:)-3tyut.json │ ├── help(_:)-50qfv.json │ ├── help(_:)-6u09z.json │ ├── hidden().json │ ├── highprioritygesture(_:including:).json │ ├── highprioritygesture(_:isenabled:).json │ ├── highprioritygesture(_:name:isenabled:).json │ ├── hovereffect(_:).json │ ├── hovereffect(_:isenabled:)-6r2lb.json │ ├── hovereffect(_:isenabled:)-mutj.json │ ├── hovereffectdisabled(_:).json │ ├── huerotation(_:).json │ ├── id(_:).json │ ├── ignoressafearea(_:edges:).json │ ├── imagescale(_:).json │ ├── indexviewstyle(_:).json │ ├── init(rootnode:).json │ ├── inspector(ispresented:content:).json │ ├── inspectorcolumnwidth(_:).json │ ├── inspectorcolumnwidth(min:ideal:max:).json │ ├── interactionactivitytrackingtag(_:).json │ ├── interactivedismissdisabled(_:).json │ ├── invalidatablecontent(_:).json │ ├── italic(_:).json │ ├── itemprovider(_:).json │ ├── kerning(_:).json │ ├── keyboardshortcut(_:)-1fyy3.json │ ├── keyboardshortcut(_:)-tpl2.json │ ├── keyboardshortcut(_:modifiers:).json │ ├── keyboardshortcut(_:modifiers:localization:).json │ ├── keyboardtype(_:).json │ ├── keyframeanimator(initialvalue:repeating:content:keyframes:).json │ ├── keyframeanimator(initialvalue:trigger:content:keyframes:).json │ ├── labeledcontentstyle(_:).json │ ├── labelshidden().json │ ├── labelstyle(_:).json │ ├── labelsvisibility(_:).json │ ├── layereffect(_:maxsampleoffset:isenabled:).json │ ├── layoutdirectionbehavior(_:).json │ ├── layoutpriority(_:).json │ ├── layoutvalue(key:value:).json │ ├── linelimit(_:)-2oro.json │ ├── linelimit(_:)-5x4b0.json │ ├── linelimit(_:)-80xq2.json │ ├── linelimit(_:)-9eosr.json │ ├── linelimit(_:reservesspace:).json │ ├── linespacing(_:).json │ ├── listitemtint(_:)-4pw01.json │ ├── listitemtint(_:)-69mnr.json │ ├── listrowbackground(_:).json │ ├── listrowinsets(_:).json │ ├── listrowseparator(_:edges:).json │ ├── listrowseparatortint(_:edges:).json │ ├── listrowspacing(_:).json │ ├── listsectionseparator(_:edges:).json │ ├── listsectionseparatortint(_:edges:).json │ ├── listsectionspacing(_:)-4ihcq.json │ ├── listsectionspacing(_:)-91ey3.json │ ├── liststyle(_:).json │ ├── luminancetoalpha().json │ ├── mask(_:).json │ ├── mask(alignment:_:).json │ ├── matchedgeometryeffect(id:in:properties:anchor:issource:).json │ ├── matchedtransitionsource(id:in:).json │ ├── matchedtransitionsource(id:in:configuration:).json │ ├── materialactiveappearance(_:).json │ ├── menuactiondismissbehavior(_:).json │ ├── menuindicator(_:).json │ ├── menuorder(_:).json │ ├── menustyle(_:).json │ ├── minimumscalefactor(_:).json │ ├── modifier(_:).json │ ├── monospaced(_:).json │ ├── monospaceddigit().json │ ├── movedisabled(_:).json │ ├── multilinetextalignment(_:).json │ ├── navigationbarbackbuttonhidden(_:).json │ ├── navigationbarhidden(_:).json │ ├── navigationbaritems(leading:).json │ ├── navigationbaritems(leading:trailing:).json │ ├── navigationbaritems(trailing:).json │ ├── navigationbartitle(_:)-7mxpz.json │ ├── navigationbartitle(_:)-7o5p0.json │ ├── navigationbartitle(_:)-7qg1i.json │ ├── navigationbartitle(_:displaymode:)-11slx.json │ ├── navigationbartitle(_:displaymode:)-4gjyb.json │ ├── navigationbartitle(_:displaymode:)-8u6s0.json │ ├── navigationbartitledisplaymode(_:).json │ ├── navigationdestination(for:destination:).json │ ├── navigationdestination(ispresented:destination:).json │ ├── navigationdestination(item:destination:).json │ ├── navigationdocument(_:).json │ ├── navigationdocument(_:preview:)-1krss.json │ ├── navigationdocument(_:preview:)-588az.json │ ├── navigationdocument(_:preview:)-6yl6s.json │ ├── navigationdocument(_:preview:)-pqg5.json │ ├── navigationenvironmenttriggerhandler(_:).json │ ├── navigationsplitviewcolumnwidth(_:).json │ ├── navigationsplitviewcolumnwidth(min:ideal:max:).json │ ├── navigationsplitviewstyle(_:).json │ ├── navigationtitle(_:)-10p7y.json │ ├── navigationtitle(_:)-7kdrx.json │ ├── navigationtitle(_:)-7qlbg.json │ ├── navigationtitle(_:)-9lhfs.json │ ├── navigationtitle(_:)-9qpjl.json │ ├── navigationtransition(_:).json │ ├── navigationviewstyle(_:).json │ ├── offset(_:).json │ ├── offset(x:y:).json │ ├── onappear(perform:).json │ ├── onchange(of:initial:_:)-5nttb.json │ ├── onchange(of:initial:_:)-932z0.json │ ├── onchange(of:perform:).json │ ├── oncontinueuseractivity(_:perform:).json │ ├── oncontinuoushover(coordinatespace:perform:).json │ ├── ondisappear(perform:).json │ ├── ondrag(_:).json │ ├── ondrag(_:preview:).json │ ├── ondrop(of:delegate:)-666lc.json │ ├── ondrop(of:delegate:)-86u35.json │ ├── ondrop(of:istargeted:perform:)-1a4q5.json │ ├── ondrop(of:istargeted:perform:)-1fg9k.json │ ├── ondrop(of:istargeted:perform:)-2op0.json │ ├── ondrop(of:istargeted:perform:)-7gn8m.json │ ├── ongeometrychange(for:of:action:)-2auow.json │ ├── ongeometrychange(for:of:action:)-8eskc.json │ ├── onhover(perform:).json │ ├── onkeypress(_:action:).json │ ├── onkeypress(_:phases:action:).json │ ├── onkeypress(characters:phases:action:).json │ ├── onkeypress(keys:phases:action:).json │ ├── onkeypress(phases:action:).json │ ├── onlongpressgesture(minimumduration:maximumdistance:perform:onpressingchanged:).json │ ├── onlongpressgesture(minimumduration:maximumdistance:pressing:perform:).json │ ├── onlongpressgesture(minimumduration:perform:onpressingchanged:).json │ ├── onlongpressgesture(minimumduration:pressing:perform:).json │ ├── onopenurl(perform:).json │ ├── onpencildoubletap(perform:).json │ ├── onpencilsqueeze(perform:).json │ ├── onpreferencechange(_:perform:).json │ ├── onreceive(_:perform:).json │ ├── onscrollgeometrychange(for:of:action:).json │ ├── onscrollphasechange(_:)-24zqu.json │ ├── onscrollphasechange(_:)-qnz.json │ ├── onscrolltargetvisibilitychange(idtype:threshold:_:).json │ ├── onscrollvisibilitychange(threshold:_:).json │ ├── onsubmit(of:_:).json │ ├── ontapgesture(count:coordinatespace:perform:).json │ ├── ontapgesture(count:perform:).json │ ├── opacity(_:).json │ ├── overlay(_:alignment:).json │ ├── overlay(_:ignoressafeareaedges:).json │ ├── overlay(_:in:fillstyle:).json │ ├── overlay(alignment:content:).json │ ├── overlaypreferencevalue(_:_:).json │ ├── overlaypreferencevalue(_:alignment:_:).json │ ├── padding(_:)-1zuhm.json │ ├── padding(_:)-5mf75.json │ ├── padding(_:_:).json │ ├── paletteselectioneffect(_:).json │ ├── persistentsystemoverlays(_:).json │ ├── phaseanimator(_:content:animation:).json │ ├── phaseanimator(_:trigger:content:animation:).json │ ├── pickerstyle(_:).json │ ├── popover(ispresented:attachmentanchor:arrowedge:content:).json │ ├── popover(item:attachmentanchor:arrowedge:content:).json │ ├── position(_:).json │ ├── position(x:y:).json │ ├── preference(key:value:).json │ ├── preferredcolorscheme(_:).json │ ├── presentationbackground(_:).json │ ├── presentationbackground(alignment:content:).json │ ├── presentationbackgroundinteraction(_:).json │ ├── presentationcompactadaptation(_:).json │ ├── presentationcompactadaptation(horizontal:vertical:).json │ ├── presentationcontentinteraction(_:).json │ ├── presentationcornerradius(_:).json │ ├── presentationdetents(_:).json │ ├── presentationdetents(_:selection:).json │ ├── presentationdragindicator(_:).json │ ├── presentationsizing(_:).json │ ├── presentingnavigationsource(id:).json │ ├── previewcontext(_:).json │ ├── previewdevice(_:).json │ ├── previewdisplayname(_:).json │ ├── previewinterfaceorientation(_:).json │ ├── previewlayout(_:).json │ ├── privacysensitive(_:).json │ ├── progressviewstyle(_:).json │ ├── projectioneffect(_:).json │ ├── redacted(reason:).json │ ├── refreshable(action:).json │ ├── registercustompresentablenavigationnodes(_:).json │ ├── renameaction(_:)-26ecf.json │ ├── renameaction(_:)-8y8o6.json │ ├── replacedisabled(_:).json │ ├── rotation3deffect(_:axis:anchor:anchorz:perspective:).json │ ├── rotationeffect(_:anchor:).json │ ├── safeareainset(edge:alignment:spacing:content:)-5ti2u.json │ ├── safeareainset(edge:alignment:spacing:content:)-8lxz3.json │ ├── safeareapadding(_:)-6fm36.json │ ├── safeareapadding(_:)-8ghua.json │ ├── safeareapadding(_:_:).json │ ├── saturation(_:).json │ ├── scaledtofill().json │ ├── scaledtofit().json │ ├── scaleeffect(_:anchor:)-4zmo1.json │ ├── scaleeffect(_:anchor:)-6hxo8.json │ ├── scaleeffect(x:y:anchor:).json │ ├── scenepadding(_:).json │ ├── scenepadding(_:edges:).json │ ├── scrollbouncebehavior(_:axes:).json │ ├── scrollclipdisabled(_:).json │ ├── scrollcontentbackground(_:).json │ ├── scrolldisabled(_:).json │ ├── scrolldismisseskeyboard(_:).json │ ├── scrollindicators(_:axes:).json │ ├── scrollindicatorsflash(onappear:).json │ ├── scrollindicatorsflash(trigger:).json │ ├── scrollinputbehavior(_:for:).json │ ├── scrollposition(_:anchor:).json │ ├── scrollposition(id:anchor:).json │ ├── scrolltargetbehavior(_:).json │ ├── scrolltargetlayout(isenabled:).json │ ├── scrolltransition(_:axis:transition:).json │ ├── scrolltransition(topleading:bottomtrailing:axis:transition:).json │ ├── searchable(text:editabletokens:ispresented:placement:prompt:token:)-88l0j.json │ ├── searchable(text:editabletokens:ispresented:placement:prompt:token:)-8xdc2.json │ ├── searchable(text:editabletokens:ispresented:placement:prompt:token:)-9ppsm.json │ ├── searchable(text:editabletokens:placement:prompt:token:)-1nze8.json │ ├── searchable(text:editabletokens:placement:prompt:token:)-6o01z.json │ ├── searchable(text:editabletokens:placement:prompt:token:)-70p9b.json │ ├── searchable(text:ispresented:placement:prompt:)-148c8.json │ ├── searchable(text:ispresented:placement:prompt:)-3l2jk.json │ ├── searchable(text:ispresented:placement:prompt:)-4ex22.json │ ├── searchable(text:placement:prompt:)-41xnc.json │ ├── searchable(text:placement:prompt:)-4m5t1.json │ ├── searchable(text:placement:prompt:)-7sp6j.json │ ├── searchable(text:placement:prompt:suggestions:)-330fm.json │ ├── searchable(text:placement:prompt:suggestions:)-3v4il.json │ ├── searchable(text:placement:prompt:suggestions:)-4mdjb.json │ ├── searchable(text:tokens:ispresented:placement:prompt:token:)-56am8.json │ ├── searchable(text:tokens:ispresented:placement:prompt:token:)-8cxgi.json │ ├── searchable(text:tokens:ispresented:placement:prompt:token:)-8tvnm.json │ ├── searchable(text:tokens:placement:prompt:token:)-153fz.json │ ├── searchable(text:tokens:placement:prompt:token:)-3iit5.json │ ├── searchable(text:tokens:placement:prompt:token:)-6mmdb.json │ ├── searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-4fnap.json │ ├── searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-4p5i7.json │ ├── searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-qa13.json │ ├── searchable(text:tokens:suggestedtokens:placement:prompt:token:)-10t7d.json │ ├── searchable(text:tokens:suggestedtokens:placement:prompt:token:)-5ojos.json │ ├── searchable(text:tokens:suggestedtokens:placement:prompt:token:)-6yfi8.json │ ├── searchcompletion(_:).json │ ├── searchdictationbehavior(_:).json │ ├── searchfocused(_:).json │ ├── searchfocused(_:equals:).json │ ├── searchpresentationtoolbarbehavior(_:).json │ ├── searchscopes(_:activation:_:).json │ ├── searchscopes(_:scopes:).json │ ├── searchsuggestions(_:).json │ ├── searchsuggestions(_:for:).json │ ├── sectionactions(content:).json │ ├── selectiondisabled(_:).json │ ├── sensoryfeedback(_:trigger:).json │ ├── sensoryfeedback(_:trigger:condition:).json │ ├── sensoryfeedback(trigger:_:).json │ ├── shadow(color:radius:x:y:).json │ ├── sheet(ispresented:ondismiss:content:).json │ ├── sheet(item:ondismiss:content:).json │ ├── simultaneousgesture(_:including:).json │ ├── simultaneousgesture(_:isenabled:).json │ ├── simultaneousgesture(_:name:isenabled:).json │ ├── speechadjustedpitch(_:).json │ ├── speechalwaysincludespunctuation(_:).json │ ├── speechannouncementsqueued(_:).json │ ├── speechspellsoutcharacters(_:).json │ ├── springloadingbehavior(_:).json │ ├── statusbar(hidden:).json │ ├── statusbarhidden(_:).json │ ├── strikethrough(_:pattern:color:).json │ ├── submitlabel(_:).json │ ├── submitscope(_:).json │ ├── swipeactions(edge:allowsfullswipe:content:).json │ ├── symboleffect(_:options:isactive:).json │ ├── symboleffect(_:options:value:).json │ ├── symboleffectsremoved(_:).json │ ├── symbolrenderingmode(_:).json │ ├── symbolvariant(_:).json │ ├── tabitem(_:).json │ ├── tablecolumnheaders(_:).json │ ├── tablestyle(_:).json │ ├── tabviewcustomization(_:).json │ ├── tabviewsidebarbottombar(content:).json │ ├── tabviewsidebarfooter(content:).json │ ├── tabviewsidebarheader(content:).json │ ├── tabviewstyle(_:).json │ ├── tag(_:includeoptional:).json │ ├── task(id:priority:_:).json │ ├── task(priority:_:).json │ ├── textcase(_:).json │ ├── textcontenttype(_:).json │ ├── texteditorstyle(_:).json │ ├── textfieldstyle(_:).json │ ├── textinputautocapitalization(_:).json │ ├── textrenderer(_:).json │ ├── textscale(_:isenabled:).json │ ├── textselection(_:).json │ ├── textselectionaffinity(_:).json │ ├── tint(_:).json │ ├── togglestyle(_:).json │ ├── toolbar(_:for:).json │ ├── toolbar(content:)-6etfp.json │ ├── toolbar(content:)-8hg4s.json │ ├── toolbar(id:content:).json │ ├── toolbar(removing:).json │ ├── toolbarbackground(_:for:).json │ ├── toolbarbackgroundvisibility(_:for:).json │ ├── toolbarcolorscheme(_:for:).json │ ├── toolbarforegroundstyle(_:for:).json │ ├── toolbarrole(_:).json │ ├── toolbartitledisplaymode(_:).json │ ├── toolbartitlemenu(content:).json │ ├── toolbarvisibility(_:for:).json │ ├── tracking(_:).json │ ├── transaction(_:).json │ ├── transaction(_:body:).json │ ├── transaction(value:_:).json │ ├── transformanchorpreference(key:value:transform:).json │ ├── transformeffect(_:).json │ ├── transformenvironment(_:transform:).json │ ├── transformpreference(_:_:).json │ ├── transition(_:).json │ ├── truncationmode(_:).json │ ├── typeselectequivalent(_:)-19i6m.json │ ├── typeselectequivalent(_:)-4djek.json │ ├── typeselectequivalent(_:)-4h99t.json │ ├── typesettinglanguage(_:isenabled:)-3erjy.json │ ├── typesettinglanguage(_:isenabled:)-8zjhv.json │ ├── underline(_:pattern:color:).json │ ├── unredacted().json │ ├── useractivity(_:element:_:).json │ ├── useractivity(_:isactive:_:).json │ ├── view-implementations.json │ ├── visualeffect(_:).json │ ├── windowtoolbarfullscreenvisibility(_:).json │ ├── writingtoolsbehavior(_:).json │ └── zindex(_:).json │ ├── openurlnavigationcommand.json │ ├── openurlnavigationcommand │ ├── canexecute(on:).json │ ├── execute(on:).json │ ├── init(url:).json │ ├── navigationcommand-implementations.json │ ├── openurl(_:).json │ └── perform(animated:action:).json │ ├── openwindownavigationcommand.json │ ├── openwindownavigationcommand │ ├── canexecute(on:).json │ ├── execute(on:).json │ ├── init(id:).json │ ├── navigationcommand-implementations.json │ ├── openwindow(id:).json │ └── perform(animated:action:).json │ ├── presentednavigationnode.json │ ├── presentednavigationnode │ ├── alert(_:sourceid:).json │ ├── body.json │ ├── confirmationdialog(_:sourceid:).json │ ├── fullscreencover(_:).json │ ├── makeispresentedbinding(presentednode:sourceid:).json │ ├── node.json │ ├── presenterresolvedviewmodifier(presentednode:content:sourceid:).json │ ├── sheet(_:sourceid:).json │ └── sourceid.json │ ├── presentingnavigationsourceviewmodifier.json │ ├── presentingnavigationsourceviewmodifier │ ├── animation(_:).json │ ├── body(content:).json │ ├── concat(_:).json │ ├── transaction(_:).json │ └── viewmodifier-implementations.json │ ├── presentnavigationcommand.json │ ├── presentnavigationcommand │ ├── canexecute(on:).json │ ├── execute(on:).json │ ├── init(presentednode:animated:).json │ ├── navigationcommand-implementations.json │ ├── perform(animated:action:).json │ └── present(_:animated:).json │ ├── presentongivennodenavigationcommand.json │ ├── presentongivennodenavigationcommand │ ├── canexecute(on:).json │ ├── execute(on:).json │ ├── init(presentednode:animated:).json │ ├── navigationcommand-implementations.json │ └── perform(animated:action:).json │ ├── removalnavigationmessage.json │ ├── resolvedhidenavigationcommand.json │ ├── resolvedhidenavigationcommand │ ├── canexecute(on:).json │ ├── execute(on:).json │ ├── hide(animated:).json │ ├── init(animated:).json │ ├── navigationcommand-implementations.json │ └── perform(animated:action:).json │ ├── sfsafariinputdata.json │ ├── sfsafariinputdata │ └── init(url:).json │ ├── sfsafarinavigationnode.json │ ├── sfsafarinavigationnode │ ├── addmessagelistener(_:).json │ ├── basenavigationnodechildren.json │ ├── body.json │ ├── canexecute(_:).json │ ├── canpresentifwouldnt.json │ ├── children.json │ ├── childrennodeswhichcanpresent.json │ ├── execute(_:).json │ ├── finishifneeded().json │ ├── init(inputdata:).json │ ├── iswrappernode.json │ ├── navigationnode-implementations.json │ ├── nearestchildrennodewhichcanpresent.json │ ├── nearestnodewhichcanpresent.json │ ├── nearestnodewhichcanpresentfromparent.json │ ├── objectwillchange.json │ ├── observableobject-implementations.json │ ├── onmessagereceived(_:).json │ ├── parent.json │ ├── predecessors.json │ ├── predecessorsincludingself.json │ ├── presentednode.json │ ├── printdebuggraph().json │ ├── printdebugtext(_:).json │ ├── root.json │ ├── sendenvironmenttrigger(_:).json │ ├── sendmessage(_:).json │ ├── startifneeded(parent:).json │ ├── successors.json │ ├── successorsincludingself.json │ └── toppresented.json │ ├── sheetpresentednavigationnode.json │ ├── sheetpresentednavigationnode │ ├── makeispresentedbinding(presentednode:sourceid:).json │ ├── node.json │ ├── presentednavigationnode-implementations.json │ ├── presenterresolvedviewmodifier(presentednode:content:sourceid:).json │ ├── sheet(_:sourceid:).json │ └── sourceid.json │ ├── stackappendnavigationcommand.json │ ├── stackappendnavigationcommand │ ├── canexecute(on:).json │ ├── execute(on:).json │ ├── init(appendednode:animated:)-3irth.json │ ├── init(appendednode:animated:)-7xn8w.json │ ├── navigationcommand-implementations.json │ ├── perform(animated:action:).json │ ├── stackappend(_:animated:)-870gc.json │ └── stackappend(_:animated:)-8q7el.json │ ├── stackdroplastnavigationcommand.json │ ├── stackdroplastnavigationcommand │ ├── canexecute(on:).json │ ├── execute(on:).json │ ├── init(k:animated:).json │ ├── navigationcommand-implementations.json │ ├── perform(animated:action:).json │ └── stackdroplast(_:animated:).json │ ├── stackdroptorootnavigationcommand.json │ ├── stackdroptorootnavigationcommand │ ├── canexecute(on:).json │ ├── execute(on:).json │ ├── init(animated:).json │ ├── navigationcommand-implementations.json │ ├── perform(animated:action:).json │ └── stackdroptoroot(animated:).json │ ├── stackmapnavigationcommand.json │ ├── stackmapnavigationcommand │ ├── canexecute(on:).json │ ├── execute(on:).json │ ├── init(animated:transform:).json │ ├── navigationcommand-implementations.json │ ├── perform(animated:action:).json │ └── stackmap(_:animated:).json │ ├── stacknavigationnode.json │ ├── stacknavigationnode │ ├── destination.json │ └── init(destination:transition:).json │ ├── stacknavigationtransition.json │ ├── stacknavigationtransition │ ├── !=(_:_:).json │ ├── equatable-implementations.json │ └── zoom(sourceid:).json │ ├── stackrootnavigationnode().json │ ├── stackrootnavigationnode.json │ ├── stackrootnavigationnode │ ├── body(for:).json │ ├── modifiedview.json │ ├── setnewpath(_:).json │ ├── stacknodes.json │ └── tabbartoolbarbehavior.json │ ├── stackrootnavigationnodeview.json │ ├── stackrootnavigationnodeview │ ├── accentcolor(_:).json │ ├── accessibility(activationpoint:)-1cwte.json │ ├── accessibility(activationpoint:)-2apet.json │ ├── accessibility(addtraits:).json │ ├── accessibility(hidden:).json │ ├── accessibility(hint:).json │ ├── accessibility(identifier:).json │ ├── accessibility(inputlabels:).json │ ├── accessibility(label:).json │ ├── accessibility(removetraits:).json │ ├── accessibility(selectionidentifier:).json │ ├── accessibility(sortpriority:).json │ ├── accessibility(value:).json │ ├── accessibilityaction(_:_:).json │ ├── accessibilityaction(action:label:).json │ ├── accessibilityaction(named:_:)-1urp9.json │ ├── accessibilityaction(named:_:)-2q70a.json │ ├── accessibilityaction(named:_:)-gcgu.json │ ├── accessibilityactions(_:).json │ ├── accessibilityactions(category:_:).json │ ├── accessibilityactivationpoint(_:)-61j3u.json │ ├── accessibilityactivationpoint(_:)-7tsky.json │ ├── accessibilityactivationpoint(_:isenabled:)-ih90.json │ ├── accessibilityactivationpoint(_:isenabled:)-ueu3.json │ ├── accessibilityaddtraits(_:).json │ ├── accessibilityadjustableaction(_:).json │ ├── accessibilitychartdescriptor(_:).json │ ├── accessibilitychildren(children:).json │ ├── accessibilitycustomcontent(_:_:importance:)-15hid.json │ ├── accessibilitycustomcontent(_:_:importance:)-2l9d4.json │ ├── accessibilitycustomcontent(_:_:importance:)-4t4u4.json │ ├── accessibilitycustomcontent(_:_:importance:)-5ozyz.json │ ├── accessibilitycustomcontent(_:_:importance:)-5zru0.json │ ├── accessibilitycustomcontent(_:_:importance:)-63axx.json │ ├── accessibilitycustomcontent(_:_:importance:)-8t545.json │ ├── accessibilitycustomcontent(_:_:importance:)-8ukg4.json │ ├── accessibilitydirecttouch(_:options:).json │ ├── accessibilitydragpoint(_:description:)-3qgbp.json │ ├── accessibilitydragpoint(_:description:)-5ewbt.json │ ├── accessibilitydragpoint(_:description:)-5i70m.json │ ├── accessibilitydragpoint(_:description:isenabled:)-10htc.json │ ├── accessibilitydragpoint(_:description:isenabled:)-2ceki.json │ ├── accessibilitydragpoint(_:description:isenabled:)-52y0u.json │ ├── accessibilitydroppoint(_:description:)-2pbro.json │ ├── accessibilitydroppoint(_:description:)-3rp8s.json │ ├── accessibilitydroppoint(_:description:)-4c4el.json │ ├── accessibilitydroppoint(_:description:isenabled:)-26cnc.json │ ├── accessibilitydroppoint(_:description:isenabled:)-2nsug.json │ ├── accessibilitydroppoint(_:description:isenabled:)-7nmr1.json │ ├── accessibilityelement(children:).json │ ├── accessibilityfocused(_:).json │ ├── accessibilityfocused(_:equals:).json │ ├── accessibilityheading(_:).json │ ├── accessibilityhidden(_:).json │ ├── accessibilityhidden(_:isenabled:).json │ ├── accessibilityhint(_:)-5l7fu.json │ ├── accessibilityhint(_:)-62uh5.json │ ├── accessibilityhint(_:)-78f9p.json │ ├── accessibilityhint(_:isenabled:)-35e5x.json │ ├── accessibilityhint(_:isenabled:)-4ofu6.json │ ├── accessibilityhint(_:isenabled:)-5jf41.json │ ├── accessibilityidentifier(_:).json │ ├── accessibilityidentifier(_:isenabled:).json │ ├── accessibilityignoresinvertcolors(_:).json │ ├── accessibilityinputlabels(_:)-60chm.json │ ├── accessibilityinputlabels(_:)-7wxqa.json │ ├── accessibilityinputlabels(_:)-81kd2.json │ ├── accessibilityinputlabels(_:isenabled:)-8m7i7.json │ ├── accessibilityinputlabels(_:isenabled:)-98sjn.json │ ├── accessibilityinputlabels(_:isenabled:)-zkk8.json │ ├── accessibilitylabel(_:)-376k8.json │ ├── accessibilitylabel(_:)-4sfr9.json │ ├── accessibilitylabel(_:)-nip8.json │ ├── accessibilitylabel(_:isenabled:)-18ayj.json │ ├── accessibilitylabel(_:isenabled:)-1ds9v.json │ ├── accessibilitylabel(_:isenabled:)-1tjk3.json │ ├── accessibilitylabel(content:).json │ ├── accessibilitylabeledpair(role:id:in:).json │ ├── accessibilitylinkedgroup(id:in:).json │ ├── accessibilityremovetraits(_:).json │ ├── accessibilityrepresentation(representation:).json │ ├── accessibilityrespondstouserinteraction(_:).json │ ├── accessibilityrespondstouserinteraction(_:isenabled:).json │ ├── accessibilityrotor(_:entries:)-3rzfq.json │ ├── accessibilityrotor(_:entries:)-4j3q3.json │ ├── accessibilityrotor(_:entries:)-6ner6.json │ ├── accessibilityrotor(_:entries:)-emku.json │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-2okk1.json │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-3g5ed.json │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-4bkdf.json │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-608d8.json │ ├── accessibilityrotor(_:entries:entrylabel:)-1zw8g.json │ ├── accessibilityrotor(_:entries:entrylabel:)-3augi.json │ ├── accessibilityrotor(_:entries:entrylabel:)-4a6ou.json │ ├── accessibilityrotor(_:entries:entrylabel:)-92rj7.json │ ├── accessibilityrotor(_:textranges:)-3o5xg.json │ ├── accessibilityrotor(_:textranges:)-6j44n.json │ ├── accessibilityrotor(_:textranges:)-86wjz.json │ ├── accessibilityrotor(_:textranges:)-g48n.json │ ├── accessibilityrotorentry(id:in:).json │ ├── accessibilityscrollaction(_:).json │ ├── accessibilityshowslargecontentviewer().json │ ├── accessibilityshowslargecontentviewer(_:).json │ ├── accessibilitysortpriority(_:).json │ ├── accessibilitytextcontenttype(_:).json │ ├── accessibilityvalue(_:)-5bawr.json │ ├── accessibilityvalue(_:)-6yy0h.json │ ├── accessibilityvalue(_:)-7uhjl.json │ ├── accessibilityvalue(_:isenabled:)-3mh0n.json │ ├── accessibilityvalue(_:isenabled:)-44azv.json │ ├── accessibilityvalue(_:isenabled:)-5kfsz.json │ ├── accessibilityzoomaction(_:).json │ ├── actionsheet(ispresented:content:).json │ ├── actionsheet(item:content:).json │ ├── alert(_:ispresented:actions:)-5cxhw.json │ ├── alert(_:ispresented:actions:)-5g4jp.json │ ├── alert(_:ispresented:actions:)-5x71w.json │ ├── alert(_:ispresented:actions:message:)-3n79t.json │ ├── alert(_:ispresented:actions:message:)-68ajq.json │ ├── alert(_:ispresented:actions:message:)-8y56t.json │ ├── alert(_:ispresented:presenting:actions:)-1zxxk.json │ ├── alert(_:ispresented:presenting:actions:)-3ibbb.json │ ├── alert(_:ispresented:presenting:actions:)-8wjy3.json │ ├── alert(_:ispresented:presenting:actions:message:)-3hulb.json │ ├── alert(_:ispresented:presenting:actions:message:)-63roi.json │ ├── alert(_:ispresented:presenting:actions:message:)-6dn1i.json │ ├── alert(ispresented:content:).json │ ├── alert(ispresented:error:actions:).json │ ├── alert(ispresented:error:actions:message:).json │ ├── alert(item:content:).json │ ├── alignmentguide(_:computevalue:)-1mw4k.json │ ├── alignmentguide(_:computevalue:)-pggy.json │ ├── alloweddynamicrange(_:).json │ ├── allowshittesting(_:).json │ ├── allowstightening(_:).json │ ├── allowswindowactivationevents(_:).json │ ├── anchorpreference(key:value:transform:).json │ ├── animation(_:).json │ ├── animation(_:body:).json │ ├── animation(_:value:).json │ ├── aspectratio(_:contentmode:)-9bbsn.json │ ├── aspectratio(_:contentmode:)-9t2m9.json │ ├── autocapitalization(_:).json │ ├── autocorrectiondisabled(_:).json │ ├── background(_:alignment:).json │ ├── background(_:ignoressafeareaedges:).json │ ├── background(_:in:fillstyle:)-30q06.json │ ├── background(_:in:fillstyle:)-w3o2.json │ ├── background(alignment:content:).json │ ├── background(ignoressafeareaedges:).json │ ├── background(in:fillstyle:)-3h96i.json │ ├── background(in:fillstyle:)-9xp4p.json │ ├── backgroundpreferencevalue(_:_:).json │ ├── backgroundpreferencevalue(_:alignment:_:).json │ ├── backgroundstyle(_:).json │ ├── badge(_:)-2xl3n.json │ ├── badge(_:)-5c9yw.json │ ├── badge(_:)-9dwxp.json │ ├── badge(_:)-d7p6.json │ ├── badgeprominence(_:).json │ ├── baselineoffset(_:).json │ ├── blendmode(_:).json │ ├── blur(radius:opaque:).json │ ├── body.json │ ├── bold(_:).json │ ├── border(_:width:).json │ ├── brightness(_:).json │ ├── buttonbordershape(_:).json │ ├── buttonrepeatbehavior(_:).json │ ├── buttonstyle(_:)-77tpu.json │ ├── buttonstyle(_:)-9bqbx.json │ ├── clipped(antialiased:).json │ ├── clipshape(_:style:).json │ ├── coloreffect(_:isenabled:).json │ ├── colorinvert().json │ ├── colormultiply(_:).json │ ├── colorscheme(_:).json │ ├── compositinggroup().json │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-2ea3e.json │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-6c8bc.json │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-6ynpa.json │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-502ol.json │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-64k3k.json │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-7xxkq.json │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-1e7kg.json │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-49qz4.json │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-64azk.json │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-2wn4l.json │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-4useu.json │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-6tv6.json │ ├── containerbackground(_:for:).json │ ├── containerbackground(for:alignment:content:).json │ ├── containerrelativeframe(_:alignment:).json │ ├── containerrelativeframe(_:alignment:_:).json │ ├── containerrelativeframe(_:count:span:spacing:alignment:).json │ ├── containershape(_:).json │ ├── containervalue(_:_:).json │ ├── contentmargins(_:_:for:)-3fgqv.json │ ├── contentmargins(_:_:for:)-8qzjs.json │ ├── contentmargins(_:for:).json │ ├── contentshape(_:_:eofill:).json │ ├── contentshape(_:eofill:).json │ ├── contenttransition(_:).json │ ├── contextmenu(_:).json │ ├── contextmenu(forselectiontype:menu:primaryaction:).json │ ├── contextmenu(menuitems:).json │ ├── contextmenu(menuitems:preview:).json │ ├── contrast(_:).json │ ├── controlgroupstyle(_:).json │ ├── controlsize(_:).json │ ├── coordinatespace(_:).json │ ├── coordinatespace(name:).json │ ├── cornerradius(_:antialiased:).json │ ├── datepickerstyle(_:).json │ ├── defaultadaptabletabbarplacement(_:).json │ ├── defaultappstorage(_:).json │ ├── defaultfocus(_:_:priority:).json │ ├── defaulthovereffect(_:)-3rw2c.json │ ├── defaulthovereffect(_:)-u9mx.json │ ├── defaultscrollanchor(_:).json │ ├── defaultscrollanchor(_:for:).json │ ├── deferssystemgestures(on:).json │ ├── deletedisabled(_:).json │ ├── dialogicon(_:).json │ ├── dialogsuppressiontoggle(_:issuppressed:)-11gd4.json │ ├── dialogsuppressiontoggle(_:issuppressed:)-69h1a.json │ ├── dialogsuppressiontoggle(_:issuppressed:)-g696.json │ ├── dialogsuppressiontoggle(issuppressed:).json │ ├── disableautocorrection(_:).json │ ├── disabled(_:).json │ ├── disclosuregroupstyle(_:).json │ ├── distortioneffect(_:maxsampleoffset:isenabled:).json │ ├── documentbrowsercontextmenu(_:).json │ ├── draggable(_:).json │ ├── draggable(_:preview:).json │ ├── drawinggroup(opaque:colormode:).json │ ├── dropdestination(for:action:istargeted:).json │ ├── dynamictypesize(_:).json │ ├── edgesignoringsafearea(_:).json │ ├── environment(_:).json │ ├── environment(_:_:).json │ ├── environmentobject(_:).json │ ├── filedialogbrowseroptions(_:).json │ ├── filedialogconfirmationlabel(_:)-266sg.json │ ├── filedialogconfirmationlabel(_:)-5olqr.json │ ├── filedialogconfirmationlabel(_:)-8to91.json │ ├── filedialogcustomizationid(_:).json │ ├── filedialogdefaultdirectory(_:).json │ ├── filedialogimportsunresolvedaliases(_:).json │ ├── filedialogmessage(_:)-18g7x.json │ ├── filedialogmessage(_:)-3yejc.json │ ├── filedialogmessage(_:)-gdly.json │ ├── filedialogurlenabled(_:).json │ ├── fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-39w0o.json │ ├── fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-8l2nu.json │ ├── fileexporter(ispresented:document:contenttypes:defaultfilename:oncompletion:oncancellation:)-2k1ui.json │ ├── fileexporter(ispresented:document:contenttypes:defaultfilename:oncompletion:oncancellation:)-3nk87.json │ ├── fileexporter(ispresented:documents:contenttype:oncompletion:)-1xy8x.json │ ├── fileexporter(ispresented:documents:contenttype:oncompletion:)-9i0pu.json │ ├── fileexporter(ispresented:documents:contenttypes:oncompletion:oncancellation:)-7qzi7.json │ ├── fileexporter(ispresented:documents:contenttypes:oncompletion:oncancellation:)-e61u.json │ ├── fileexporter(ispresented:item:contenttypes:defaultfilename:oncompletion:oncancellation:).json │ ├── fileexporter(ispresented:items:contenttypes:oncompletion:oncancellation:).json │ ├── fileexporterfilenamelabel(_:)-5xe1p.json │ ├── fileexporterfilenamelabel(_:)-gixk.json │ ├── fileexporterfilenamelabel(_:)-w5ba.json │ ├── fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:).json │ ├── fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:oncancellation:).json │ ├── fileimporter(ispresented:allowedcontenttypes:oncompletion:).json │ ├── filemover(ispresented:file:oncompletion:).json │ ├── filemover(ispresented:file:oncompletion:oncancellation:).json │ ├── filemover(ispresented:files:oncompletion:).json │ ├── filemover(ispresented:files:oncompletion:oncancellation:).json │ ├── finddisabled(_:).json │ ├── findnavigator(ispresented:).json │ ├── fixedsize().json │ ├── fixedsize(horizontal:vertical:).json │ ├── flipsforrighttoleftlayoutdirection(_:).json │ ├── focusable(_:).json │ ├── focusable(_:interactions:).json │ ├── focused(_:).json │ ├── focused(_:equals:).json │ ├── focusedobject(_:)-68qa6.json │ ├── focusedobject(_:)-99gnm.json │ ├── focusedsceneobject(_:)-5giqk.json │ ├── focusedsceneobject(_:)-9tub4.json │ ├── focusedscenevalue(_:).json │ ├── focusedscenevalue(_:_:)-5zd2c.json │ ├── focusedscenevalue(_:_:)-6rcvy.json │ ├── focusedvalue(_:).json │ ├── focusedvalue(_:_:)-1gv3x.json │ ├── focusedvalue(_:_:)-7zbaf.json │ ├── focuseffectdisabled(_:).json │ ├── font(_:).json │ ├── fontdesign(_:).json │ ├── fontweight(_:).json │ ├── fontwidth(_:).json │ ├── foregroundcolor(_:).json │ ├── foregroundstyle(_:).json │ ├── foregroundstyle(_:_:).json │ ├── foregroundstyle(_:_:_:).json │ ├── formstyle(_:).json │ ├── frame().json │ ├── frame(minwidth:idealwidth:maxwidth:minheight:idealheight:maxheight:alignment:).json │ ├── frame(width:height:alignment:).json │ ├── fullscreencover(ispresented:ondismiss:content:).json │ ├── fullscreencover(item:ondismiss:content:).json │ ├── gaugestyle(_:).json │ ├── geometrygroup().json │ ├── gesture(_:).json │ ├── gesture(_:including:).json │ ├── gesture(_:isenabled:).json │ ├── gesture(_:name:isenabled:).json │ ├── grayscale(_:).json │ ├── gridcellanchor(_:).json │ ├── gridcellcolumns(_:).json │ ├── gridcellunsizedaxes(_:).json │ ├── gridcolumnalignment(_:).json │ ├── groupboxstyle(_:).json │ ├── handgestureshortcut(_:isenabled:).json │ ├── handlesexternalevents(preferring:allowing:).json │ ├── handlingstacktabbartoolbarbehavior(inputnavigationnodetype:).json │ ├── headerprominence(_:).json │ ├── help(_:)-1v9rl.json │ ├── help(_:)-20li4.json │ ├── help(_:)-8q97c.json │ ├── hidden().json │ ├── highprioritygesture(_:including:).json │ ├── highprioritygesture(_:isenabled:).json │ ├── highprioritygesture(_:name:isenabled:).json │ ├── hovereffect(_:).json │ ├── hovereffect(_:isenabled:)-1aw07.json │ ├── hovereffect(_:isenabled:)-6fuks.json │ ├── hovereffectdisabled(_:).json │ ├── huerotation(_:).json │ ├── id(_:).json │ ├── ignoressafearea(_:edges:).json │ ├── imagescale(_:).json │ ├── indexviewstyle(_:).json │ ├── init().json │ ├── inspector(ispresented:content:).json │ ├── inspectorcolumnwidth(_:).json │ ├── inspectorcolumnwidth(min:ideal:max:).json │ ├── interactionactivitytrackingtag(_:).json │ ├── interactivedismissdisabled(_:).json │ ├── invalidatablecontent(_:).json │ ├── italic(_:).json │ ├── itemprovider(_:).json │ ├── kerning(_:).json │ ├── keyboardshortcut(_:)-8qtid.json │ ├── keyboardshortcut(_:)-9q9rt.json │ ├── keyboardshortcut(_:modifiers:).json │ ├── keyboardshortcut(_:modifiers:localization:).json │ ├── keyboardtype(_:).json │ ├── keyframeanimator(initialvalue:repeating:content:keyframes:).json │ ├── keyframeanimator(initialvalue:trigger:content:keyframes:).json │ ├── labeledcontentstyle(_:).json │ ├── labelshidden().json │ ├── labelstyle(_:).json │ ├── labelsvisibility(_:).json │ ├── layereffect(_:maxsampleoffset:isenabled:).json │ ├── layoutdirectionbehavior(_:).json │ ├── layoutpriority(_:).json │ ├── layoutvalue(key:value:).json │ ├── linelimit(_:)-2dd1w.json │ ├── linelimit(_:)-51r19.json │ ├── linelimit(_:)-6o3qz.json │ ├── linelimit(_:)-h3ag.json │ ├── linelimit(_:reservesspace:).json │ ├── linespacing(_:).json │ ├── listitemtint(_:)-39hrj.json │ ├── listitemtint(_:)-54nl2.json │ ├── listrowbackground(_:).json │ ├── listrowinsets(_:).json │ ├── listrowseparator(_:edges:).json │ ├── listrowseparatortint(_:edges:).json │ ├── listrowspacing(_:).json │ ├── listsectionseparator(_:edges:).json │ ├── listsectionseparatortint(_:edges:).json │ ├── listsectionspacing(_:)-18d2j.json │ ├── listsectionspacing(_:)-9pu7p.json │ ├── liststyle(_:).json │ ├── luminancetoalpha().json │ ├── mask(_:).json │ ├── mask(alignment:_:).json │ ├── matchedgeometryeffect(id:in:properties:anchor:issource:).json │ ├── matchedtransitionsource(id:in:).json │ ├── matchedtransitionsource(id:in:configuration:).json │ ├── materialactiveappearance(_:).json │ ├── menuactiondismissbehavior(_:).json │ ├── menuindicator(_:).json │ ├── menuorder(_:).json │ ├── menustyle(_:).json │ ├── minimumscalefactor(_:).json │ ├── modifier(_:).json │ ├── monospaced(_:).json │ ├── monospaceddigit().json │ ├── movedisabled(_:).json │ ├── multilinetextalignment(_:).json │ ├── navigationbarbackbuttonhidden(_:).json │ ├── navigationbarhidden(_:).json │ ├── navigationbaritems(leading:).json │ ├── navigationbaritems(leading:trailing:).json │ ├── navigationbaritems(trailing:).json │ ├── navigationbartitle(_:)-1mu4.json │ ├── navigationbartitle(_:)-4kz9q.json │ ├── navigationbartitle(_:)-96fyi.json │ ├── navigationbartitle(_:displaymode:)-3bjqn.json │ ├── navigationbartitle(_:displaymode:)-597vk.json │ ├── navigationbartitle(_:displaymode:)-6cth.json │ ├── navigationbartitledisplaymode(_:).json │ ├── navigationdestination(for:destination:).json │ ├── navigationdestination(ispresented:destination:).json │ ├── navigationdestination(item:destination:).json │ ├── navigationdocument(_:).json │ ├── navigationdocument(_:preview:)-1twtm.json │ ├── navigationdocument(_:preview:)-3fcsv.json │ ├── navigationdocument(_:preview:)-44617.json │ ├── navigationdocument(_:preview:)-477fu.json │ ├── navigationenvironmenttriggerhandler(_:).json │ ├── navigationsplitviewcolumnwidth(_:).json │ ├── navigationsplitviewcolumnwidth(min:ideal:max:).json │ ├── navigationsplitviewstyle(_:).json │ ├── navigationtitle(_:)-15bit.json │ ├── navigationtitle(_:)-2oadr.json │ ├── navigationtitle(_:)-6pd4l.json │ ├── navigationtitle(_:)-6q1t1.json │ ├── navigationtitle(_:)-8lqrk.json │ ├── navigationtransition(_:).json │ ├── navigationviewstyle(_:).json │ ├── offset(_:).json │ ├── offset(x:y:).json │ ├── onappear(perform:).json │ ├── onchange(of:initial:_:)-1a9uk.json │ ├── onchange(of:initial:_:)-t81i.json │ ├── onchange(of:perform:).json │ ├── oncontinueuseractivity(_:perform:).json │ ├── oncontinuoushover(coordinatespace:perform:).json │ ├── ondisappear(perform:).json │ ├── ondrag(_:).json │ ├── ondrag(_:preview:).json │ ├── ondrop(of:delegate:)-23gx7.json │ ├── ondrop(of:delegate:)-42sk.json │ ├── ondrop(of:istargeted:perform:)-19y3f.json │ ├── ondrop(of:istargeted:perform:)-2ysst.json │ ├── ondrop(of:istargeted:perform:)-4q93y.json │ ├── ondrop(of:istargeted:perform:)-6abth.json │ ├── ongeometrychange(for:of:action:)-9m27v.json │ ├── ongeometrychange(for:of:action:)-9yt5c.json │ ├── onhover(perform:).json │ ├── onkeypress(_:action:).json │ ├── onkeypress(_:phases:action:).json │ ├── onkeypress(characters:phases:action:).json │ ├── onkeypress(keys:phases:action:).json │ ├── onkeypress(phases:action:).json │ ├── onlongpressgesture(minimumduration:maximumdistance:perform:onpressingchanged:).json │ ├── onlongpressgesture(minimumduration:maximumdistance:pressing:perform:).json │ ├── onlongpressgesture(minimumduration:perform:onpressingchanged:).json │ ├── onlongpressgesture(minimumduration:pressing:perform:).json │ ├── onopenurl(perform:).json │ ├── onpencildoubletap(perform:).json │ ├── onpencilsqueeze(perform:).json │ ├── onpreferencechange(_:perform:).json │ ├── onreceive(_:perform:).json │ ├── onscrollgeometrychange(for:of:action:).json │ ├── onscrollphasechange(_:)-5bsr0.json │ ├── onscrollphasechange(_:)-9657z.json │ ├── onscrolltargetvisibilitychange(idtype:threshold:_:).json │ ├── onscrollvisibilitychange(threshold:_:).json │ ├── onsubmit(of:_:).json │ ├── ontapgesture(count:coordinatespace:perform:).json │ ├── ontapgesture(count:perform:).json │ ├── opacity(_:).json │ ├── overlay(_:alignment:).json │ ├── overlay(_:ignoressafeareaedges:).json │ ├── overlay(_:in:fillstyle:).json │ ├── overlay(alignment:content:).json │ ├── overlaypreferencevalue(_:_:).json │ ├── overlaypreferencevalue(_:alignment:_:).json │ ├── padding(_:)-6i9en.json │ ├── padding(_:)-8c9g2.json │ ├── padding(_:_:).json │ ├── paletteselectioneffect(_:).json │ ├── persistentsystemoverlays(_:).json │ ├── phaseanimator(_:content:animation:).json │ ├── phaseanimator(_:trigger:content:animation:).json │ ├── pickerstyle(_:).json │ ├── popover(ispresented:attachmentanchor:arrowedge:content:).json │ ├── popover(item:attachmentanchor:arrowedge:content:).json │ ├── position(_:).json │ ├── position(x:y:).json │ ├── preference(key:value:).json │ ├── preferredcolorscheme(_:).json │ ├── presentationbackground(_:).json │ ├── presentationbackground(alignment:content:).json │ ├── presentationbackgroundinteraction(_:).json │ ├── presentationcompactadaptation(_:).json │ ├── presentationcompactadaptation(horizontal:vertical:).json │ ├── presentationcontentinteraction(_:).json │ ├── presentationcornerradius(_:).json │ ├── presentationdetents(_:).json │ ├── presentationdetents(_:selection:).json │ ├── presentationdragindicator(_:).json │ ├── presentationsizing(_:).json │ ├── presentingnavigationsource(id:).json │ ├── previewcontext(_:).json │ ├── previewdevice(_:).json │ ├── previewdisplayname(_:).json │ ├── previewinterfaceorientation(_:).json │ ├── previewlayout(_:).json │ ├── privacysensitive(_:).json │ ├── progressviewstyle(_:).json │ ├── projectioneffect(_:).json │ ├── redacted(reason:).json │ ├── refreshable(action:).json │ ├── registercustompresentablenavigationnodes(_:).json │ ├── renameaction(_:)-4ja36.json │ ├── renameaction(_:)-52kg7.json │ ├── replacedisabled(_:).json │ ├── rotation3deffect(_:axis:anchor:anchorz:perspective:).json │ ├── rotationeffect(_:anchor:).json │ ├── safeareainset(edge:alignment:spacing:content:)-33ral.json │ ├── safeareainset(edge:alignment:spacing:content:)-8vff2.json │ ├── safeareapadding(_:)-643ht.json │ ├── safeareapadding(_:)-7ftrx.json │ ├── safeareapadding(_:_:).json │ ├── saturation(_:).json │ ├── scaledtofill().json │ ├── scaledtofit().json │ ├── scaleeffect(_:anchor:)-6nl7j.json │ ├── scaleeffect(_:anchor:)-e6ho.json │ ├── scaleeffect(x:y:anchor:).json │ ├── scenepadding(_:).json │ ├── scenepadding(_:edges:).json │ ├── scrollbouncebehavior(_:axes:).json │ ├── scrollclipdisabled(_:).json │ ├── scrollcontentbackground(_:).json │ ├── scrolldisabled(_:).json │ ├── scrolldismisseskeyboard(_:).json │ ├── scrollindicators(_:axes:).json │ ├── scrollindicatorsflash(onappear:).json │ ├── scrollindicatorsflash(trigger:).json │ ├── scrollinputbehavior(_:for:).json │ ├── scrollposition(_:anchor:).json │ ├── scrollposition(id:anchor:).json │ ├── scrolltargetbehavior(_:).json │ ├── scrolltargetlayout(isenabled:).json │ ├── scrolltransition(_:axis:transition:).json │ ├── scrolltransition(topleading:bottomtrailing:axis:transition:).json │ ├── searchable(text:editabletokens:ispresented:placement:prompt:token:)-5cxx5.json │ ├── searchable(text:editabletokens:ispresented:placement:prompt:token:)-6tl06.json │ ├── searchable(text:editabletokens:ispresented:placement:prompt:token:)-6xh01.json │ ├── searchable(text:editabletokens:placement:prompt:token:)-11gn7.json │ ├── searchable(text:editabletokens:placement:prompt:token:)-1su1k.json │ ├── searchable(text:editabletokens:placement:prompt:token:)-3i6c8.json │ ├── searchable(text:ispresented:placement:prompt:)-1sg4t.json │ ├── searchable(text:ispresented:placement:prompt:)-5z31t.json │ ├── searchable(text:ispresented:placement:prompt:)-8vja2.json │ ├── searchable(text:placement:prompt:)-4fvpq.json │ ├── searchable(text:placement:prompt:)-6dauj.json │ ├── searchable(text:placement:prompt:)-88al1.json │ ├── searchable(text:placement:prompt:suggestions:)-1az5n.json │ ├── searchable(text:placement:prompt:suggestions:)-9914m.json │ ├── searchable(text:placement:prompt:suggestions:)-sxn6.json │ ├── searchable(text:tokens:ispresented:placement:prompt:token:)-1nk2y.json │ ├── searchable(text:tokens:ispresented:placement:prompt:token:)-2d1o8.json │ ├── searchable(text:tokens:ispresented:placement:prompt:token:)-mlzs.json │ ├── searchable(text:tokens:placement:prompt:token:)-161g2.json │ ├── searchable(text:tokens:placement:prompt:token:)-3ylms.json │ ├── searchable(text:tokens:placement:prompt:token:)-4esvk.json │ ├── searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-6l97.json │ ├── searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-94wpj.json │ ├── searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-pb4.json │ ├── searchable(text:tokens:suggestedtokens:placement:prompt:token:)-13fei.json │ ├── searchable(text:tokens:suggestedtokens:placement:prompt:token:)-61o3o.json │ ├── searchable(text:tokens:suggestedtokens:placement:prompt:token:)-xt7g.json │ ├── searchcompletion(_:).json │ ├── searchdictationbehavior(_:).json │ ├── searchfocused(_:).json │ ├── searchfocused(_:equals:).json │ ├── searchpresentationtoolbarbehavior(_:).json │ ├── searchscopes(_:activation:_:).json │ ├── searchscopes(_:scopes:).json │ ├── searchsuggestions(_:).json │ ├── searchsuggestions(_:for:).json │ ├── sectionactions(content:).json │ ├── selectiondisabled(_:).json │ ├── sensoryfeedback(_:trigger:).json │ ├── sensoryfeedback(_:trigger:condition:).json │ ├── sensoryfeedback(trigger:_:).json │ ├── shadow(color:radius:x:y:).json │ ├── sheet(ispresented:ondismiss:content:).json │ ├── sheet(item:ondismiss:content:).json │ ├── simultaneousgesture(_:including:).json │ ├── simultaneousgesture(_:isenabled:).json │ ├── simultaneousgesture(_:name:isenabled:).json │ ├── speechadjustedpitch(_:).json │ ├── speechalwaysincludespunctuation(_:).json │ ├── speechannouncementsqueued(_:).json │ ├── speechspellsoutcharacters(_:).json │ ├── springloadingbehavior(_:).json │ ├── statusbar(hidden:).json │ ├── statusbarhidden(_:).json │ ├── strikethrough(_:pattern:color:).json │ ├── submitlabel(_:).json │ ├── submitscope(_:).json │ ├── swipeactions(edge:allowsfullswipe:content:).json │ ├── symboleffect(_:options:isactive:).json │ ├── symboleffect(_:options:value:).json │ ├── symboleffectsremoved(_:).json │ ├── symbolrenderingmode(_:).json │ ├── symbolvariant(_:).json │ ├── tabitem(_:).json │ ├── tablecolumnheaders(_:).json │ ├── tablestyle(_:).json │ ├── tabviewcustomization(_:).json │ ├── tabviewsidebarbottombar(content:).json │ ├── tabviewsidebarfooter(content:).json │ ├── tabviewsidebarheader(content:).json │ ├── tabviewstyle(_:).json │ ├── tag(_:includeoptional:).json │ ├── task(id:priority:_:).json │ ├── task(priority:_:).json │ ├── textcase(_:).json │ ├── textcontenttype(_:).json │ ├── texteditorstyle(_:).json │ ├── textfieldstyle(_:).json │ ├── textinputautocapitalization(_:).json │ ├── textrenderer(_:).json │ ├── textscale(_:isenabled:).json │ ├── textselection(_:).json │ ├── textselectionaffinity(_:).json │ ├── tint(_:).json │ ├── togglestyle(_:).json │ ├── toolbar(_:for:).json │ ├── toolbar(content:)-12hke.json │ ├── toolbar(content:)-709fb.json │ ├── toolbar(id:content:).json │ ├── toolbar(removing:).json │ ├── toolbarbackground(_:for:).json │ ├── toolbarbackgroundvisibility(_:for:).json │ ├── toolbarcolorscheme(_:for:).json │ ├── toolbarforegroundstyle(_:for:).json │ ├── toolbarrole(_:).json │ ├── toolbartitledisplaymode(_:).json │ ├── toolbartitlemenu(content:).json │ ├── toolbarvisibility(_:for:).json │ ├── tracking(_:).json │ ├── transaction(_:).json │ ├── transaction(_:body:).json │ ├── transaction(value:_:).json │ ├── transformanchorpreference(key:value:transform:).json │ ├── transformeffect(_:).json │ ├── transformenvironment(_:transform:).json │ ├── transformpreference(_:_:).json │ ├── transition(_:).json │ ├── truncationmode(_:).json │ ├── typeselectequivalent(_:)-28l87.json │ ├── typeselectequivalent(_:)-4g4co.json │ ├── typeselectequivalent(_:)-5afp6.json │ ├── typesettinglanguage(_:isenabled:)-3utyi.json │ ├── typesettinglanguage(_:isenabled:)-7uj9c.json │ ├── underline(_:pattern:color:).json │ ├── unredacted().json │ ├── useractivity(_:element:_:).json │ ├── useractivity(_:isactive:_:).json │ ├── view-implementations.json │ ├── visualeffect(_:).json │ ├── windowtoolbarfullscreenvisibility(_:).json │ ├── writingtoolsbehavior(_:).json │ └── zindex(_:).json │ ├── stacksetrootnavigationcommand.json │ ├── stacksetrootnavigationcommand │ ├── canexecute(on:).json │ ├── execute(on:).json │ ├── init(rootnode:clear:animated:).json │ ├── navigationcommand-implementations.json │ ├── perform(animated:action:).json │ └── stacksetroot(_:clear:animated:).json │ ├── stacktabbartoolbarbehavior.json │ ├── stacktabbartoolbarbehavior │ ├── automatic.json │ └── hiddenwhennotroot(animated:).json │ ├── swiftuicore.json │ ├── swiftuicore │ ├── environmentvalues.json │ ├── environmentvalues │ │ ├── navigationenvironmenttriggerhandler.json │ │ ├── registeredcustompresentablenavigationnodes.json │ │ └── stacknavigationnamespace.json │ ├── view.json │ └── view │ │ ├── handlingstacktabbartoolbarbehavior(inputnavigationnodetype:).json │ │ ├── navigationenvironmenttriggerhandler(_:).json │ │ ├── presentingnavigationsource(id:).json │ │ └── registercustompresentablenavigationnodes(_:).json │ ├── switchednavigationnode().json │ ├── switchednavigationnode.json │ ├── switchednavigationnode │ ├── body(for:).json │ ├── modifiedview.json │ └── switchednode.json │ ├── switchednavigationnodeview.json │ ├── switchednavigationnodeview │ ├── accentcolor(_:).json │ ├── accessibility(activationpoint:)-2xe43.json │ ├── accessibility(activationpoint:)-ex1q.json │ ├── accessibility(addtraits:).json │ ├── accessibility(hidden:).json │ ├── accessibility(hint:).json │ ├── accessibility(identifier:).json │ ├── accessibility(inputlabels:).json │ ├── accessibility(label:).json │ ├── accessibility(removetraits:).json │ ├── accessibility(selectionidentifier:).json │ ├── accessibility(sortpriority:).json │ ├── accessibility(value:).json │ ├── accessibilityaction(_:_:).json │ ├── accessibilityaction(action:label:).json │ ├── accessibilityaction(named:_:)-146yr.json │ ├── accessibilityaction(named:_:)-3porq.json │ ├── accessibilityaction(named:_:)-7zskl.json │ ├── accessibilityactions(_:).json │ ├── accessibilityactions(category:_:).json │ ├── accessibilityactivationpoint(_:)-4zzqe.json │ ├── accessibilityactivationpoint(_:)-547fz.json │ ├── accessibilityactivationpoint(_:isenabled:)-478qa.json │ ├── accessibilityactivationpoint(_:isenabled:)-5h2kz.json │ ├── accessibilityaddtraits(_:).json │ ├── accessibilityadjustableaction(_:).json │ ├── accessibilitychartdescriptor(_:).json │ ├── accessibilitychildren(children:).json │ ├── accessibilitycustomcontent(_:_:importance:)-1ietl.json │ ├── accessibilitycustomcontent(_:_:importance:)-4j1j9.json │ ├── accessibilitycustomcontent(_:_:importance:)-5qt3t.json │ ├── accessibilitycustomcontent(_:_:importance:)-78ypb.json │ ├── accessibilitycustomcontent(_:_:importance:)-8grbg.json │ ├── accessibilitycustomcontent(_:_:importance:)-92dm4.json │ ├── accessibilitycustomcontent(_:_:importance:)-9ks12.json │ ├── accessibilitycustomcontent(_:_:importance:)-hasd.json │ ├── accessibilitydirecttouch(_:options:).json │ ├── accessibilitydragpoint(_:description:)-1elj5.json │ ├── accessibilitydragpoint(_:description:)-26fia.json │ ├── accessibilitydragpoint(_:description:)-5phv8.json │ ├── accessibilitydragpoint(_:description:isenabled:)-1h5wn.json │ ├── accessibilitydragpoint(_:description:isenabled:)-27p9a.json │ ├── accessibilitydragpoint(_:description:isenabled:)-3tac4.json │ ├── accessibilitydroppoint(_:description:)-2uu25.json │ ├── accessibilitydroppoint(_:description:)-5niji.json │ ├── accessibilitydroppoint(_:description:)-71pvc.json │ ├── accessibilitydroppoint(_:description:isenabled:)-10qmm.json │ ├── accessibilitydroppoint(_:description:isenabled:)-4rave.json │ ├── accessibilitydroppoint(_:description:isenabled:)-8di8r.json │ ├── accessibilityelement(children:).json │ ├── accessibilityfocused(_:).json │ ├── accessibilityfocused(_:equals:).json │ ├── accessibilityheading(_:).json │ ├── accessibilityhidden(_:).json │ ├── accessibilityhidden(_:isenabled:).json │ ├── accessibilityhint(_:)-15owj.json │ ├── accessibilityhint(_:)-608nl.json │ ├── accessibilityhint(_:)-78x3q.json │ ├── accessibilityhint(_:isenabled:)-3myvw.json │ ├── accessibilityhint(_:isenabled:)-6hclz.json │ ├── accessibilityhint(_:isenabled:)-86z0n.json │ ├── accessibilityidentifier(_:).json │ ├── accessibilityidentifier(_:isenabled:).json │ ├── accessibilityignoresinvertcolors(_:).json │ ├── accessibilityinputlabels(_:)-2wwv7.json │ ├── accessibilityinputlabels(_:)-3mmj4.json │ ├── accessibilityinputlabels(_:)-96ghh.json │ ├── accessibilityinputlabels(_:isenabled:)-1q8hn.json │ ├── accessibilityinputlabels(_:isenabled:)-2bg3.json │ ├── accessibilityinputlabels(_:isenabled:)-5qx9f.json │ ├── accessibilitylabel(_:)-6gme5.json │ ├── accessibilitylabel(_:)-8dd57.json │ ├── accessibilitylabel(_:)-9wt5.json │ ├── accessibilitylabel(_:isenabled:)-2dony.json │ ├── accessibilitylabel(_:isenabled:)-6a8i7.json │ ├── accessibilitylabel(_:isenabled:)-7xm7t.json │ ├── accessibilitylabel(content:).json │ ├── accessibilitylabeledpair(role:id:in:).json │ ├── accessibilitylinkedgroup(id:in:).json │ ├── accessibilityremovetraits(_:).json │ ├── accessibilityrepresentation(representation:).json │ ├── accessibilityrespondstouserinteraction(_:).json │ ├── accessibilityrespondstouserinteraction(_:isenabled:).json │ ├── accessibilityrotor(_:entries:)-25gjn.json │ ├── accessibilityrotor(_:entries:)-33wj1.json │ ├── accessibilityrotor(_:entries:)-781vx.json │ ├── accessibilityrotor(_:entries:)-7mxaa.json │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-2z4ak.json │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-5k9df.json │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-6ip3w.json │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-8dtv1.json │ ├── accessibilityrotor(_:entries:entrylabel:)-1arri.json │ ├── accessibilityrotor(_:entries:entrylabel:)-3dbtc.json │ ├── accessibilityrotor(_:entries:entrylabel:)-3nlmd.json │ ├── accessibilityrotor(_:entries:entrylabel:)-7f456.json │ ├── accessibilityrotor(_:textranges:)-52bzr.json │ ├── accessibilityrotor(_:textranges:)-9fc1e.json │ ├── accessibilityrotor(_:textranges:)-9fvh0.json │ ├── accessibilityrotor(_:textranges:)-u3s0.json │ ├── accessibilityrotorentry(id:in:).json │ ├── accessibilityscrollaction(_:).json │ ├── accessibilityshowslargecontentviewer().json │ ├── accessibilityshowslargecontentviewer(_:).json │ ├── accessibilitysortpriority(_:).json │ ├── accessibilitytextcontenttype(_:).json │ ├── accessibilityvalue(_:)-3hd91.json │ ├── accessibilityvalue(_:)-68w1u.json │ ├── accessibilityvalue(_:)-8s5e4.json │ ├── accessibilityvalue(_:isenabled:)-4a73r.json │ ├── accessibilityvalue(_:isenabled:)-54c0o.json │ ├── accessibilityvalue(_:isenabled:)-70o24.json │ ├── accessibilityzoomaction(_:).json │ ├── actionsheet(ispresented:content:).json │ ├── actionsheet(item:content:).json │ ├── alert(_:ispresented:actions:)-4t46v.json │ ├── alert(_:ispresented:actions:)-8fc5y.json │ ├── alert(_:ispresented:actions:)-8rskl.json │ ├── alert(_:ispresented:actions:message:)-6qgjo.json │ ├── alert(_:ispresented:actions:message:)-92gl7.json │ ├── alert(_:ispresented:actions:message:)-sa8p.json │ ├── alert(_:ispresented:presenting:actions:)-84lzy.json │ ├── alert(_:ispresented:presenting:actions:)-9lw6y.json │ ├── alert(_:ispresented:presenting:actions:)-q4ks.json │ ├── alert(_:ispresented:presenting:actions:message:)-3uw9b.json │ ├── alert(_:ispresented:presenting:actions:message:)-4d0lj.json │ ├── alert(_:ispresented:presenting:actions:message:)-7in1i.json │ ├── alert(ispresented:content:).json │ ├── alert(ispresented:error:actions:).json │ ├── alert(ispresented:error:actions:message:).json │ ├── alert(item:content:).json │ ├── alignmentguide(_:computevalue:)-3j04c.json │ ├── alignmentguide(_:computevalue:)-6cgw1.json │ ├── alloweddynamicrange(_:).json │ ├── allowshittesting(_:).json │ ├── allowstightening(_:).json │ ├── allowswindowactivationevents(_:).json │ ├── anchorpreference(key:value:transform:).json │ ├── animation(_:).json │ ├── animation(_:body:).json │ ├── animation(_:value:).json │ ├── aspectratio(_:contentmode:)-7axjz.json │ ├── aspectratio(_:contentmode:)-9ou0n.json │ ├── autocapitalization(_:).json │ ├── autocorrectiondisabled(_:).json │ ├── background(_:alignment:).json │ ├── background(_:ignoressafeareaedges:).json │ ├── background(_:in:fillstyle:)-23tdy.json │ ├── background(_:in:fillstyle:)-6jq5v.json │ ├── background(alignment:content:).json │ ├── background(ignoressafeareaedges:).json │ ├── background(in:fillstyle:)-5imds.json │ ├── background(in:fillstyle:)-axdh.json │ ├── backgroundpreferencevalue(_:_:).json │ ├── backgroundpreferencevalue(_:alignment:_:).json │ ├── backgroundstyle(_:).json │ ├── badge(_:)-1ctop.json │ ├── badge(_:)-3asd5.json │ ├── badge(_:)-534ev.json │ ├── badge(_:)-9i75f.json │ ├── badgeprominence(_:).json │ ├── baselineoffset(_:).json │ ├── blendmode(_:).json │ ├── blur(radius:opaque:).json │ ├── body.json │ ├── bold(_:).json │ ├── border(_:width:).json │ ├── brightness(_:).json │ ├── buttonbordershape(_:).json │ ├── buttonrepeatbehavior(_:).json │ ├── buttonstyle(_:)-345cf.json │ ├── buttonstyle(_:)-3tvtp.json │ ├── clipped(antialiased:).json │ ├── clipshape(_:style:).json │ ├── coloreffect(_:isenabled:).json │ ├── colorinvert().json │ ├── colormultiply(_:).json │ ├── colorscheme(_:).json │ ├── compositinggroup().json │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-5xywu.json │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-80zyn.json │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-8i1oj.json │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-57qns.json │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-584dw.json │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-6fiao.json │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-4roko.json │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-5kgoy.json │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-7w0h7.json │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-3f0gt.json │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-6fq7q.json │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-ece4.json │ ├── containerbackground(_:for:).json │ ├── containerbackground(for:alignment:content:).json │ ├── containerrelativeframe(_:alignment:).json │ ├── containerrelativeframe(_:alignment:_:).json │ ├── containerrelativeframe(_:count:span:spacing:alignment:).json │ ├── containershape(_:).json │ ├── containervalue(_:_:).json │ ├── contentmargins(_:_:for:)-2em8w.json │ ├── contentmargins(_:_:for:)-9wi5s.json │ ├── contentmargins(_:for:).json │ ├── contentshape(_:_:eofill:).json │ ├── contentshape(_:eofill:).json │ ├── contenttransition(_:).json │ ├── contextmenu(_:).json │ ├── contextmenu(forselectiontype:menu:primaryaction:).json │ ├── contextmenu(menuitems:).json │ ├── contextmenu(menuitems:preview:).json │ ├── contrast(_:).json │ ├── controlgroupstyle(_:).json │ ├── controlsize(_:).json │ ├── coordinatespace(_:).json │ ├── coordinatespace(name:).json │ ├── cornerradius(_:antialiased:).json │ ├── datepickerstyle(_:).json │ ├── defaultadaptabletabbarplacement(_:).json │ ├── defaultappstorage(_:).json │ ├── defaultfocus(_:_:priority:).json │ ├── defaulthovereffect(_:)-2ojae.json │ ├── defaulthovereffect(_:)-3r12q.json │ ├── defaultscrollanchor(_:).json │ ├── defaultscrollanchor(_:for:).json │ ├── deferssystemgestures(on:).json │ ├── deletedisabled(_:).json │ ├── dialogicon(_:).json │ ├── dialogsuppressiontoggle(_:issuppressed:)-6dw3g.json │ ├── dialogsuppressiontoggle(_:issuppressed:)-bd9a.json │ ├── dialogsuppressiontoggle(_:issuppressed:)-jnuj.json │ ├── dialogsuppressiontoggle(issuppressed:).json │ ├── disableautocorrection(_:).json │ ├── disabled(_:).json │ ├── disclosuregroupstyle(_:).json │ ├── distortioneffect(_:maxsampleoffset:isenabled:).json │ ├── documentbrowsercontextmenu(_:).json │ ├── draggable(_:).json │ ├── draggable(_:preview:).json │ ├── drawinggroup(opaque:colormode:).json │ ├── dropdestination(for:action:istargeted:).json │ ├── dynamictypesize(_:).json │ ├── edgesignoringsafearea(_:).json │ ├── environment(_:).json │ ├── environment(_:_:).json │ ├── environmentobject(_:).json │ ├── filedialogbrowseroptions(_:).json │ ├── filedialogconfirmationlabel(_:)-6vmff.json │ ├── filedialogconfirmationlabel(_:)-8f0pz.json │ ├── filedialogconfirmationlabel(_:)-8ntih.json │ ├── filedialogcustomizationid(_:).json │ ├── filedialogdefaultdirectory(_:).json │ ├── filedialogimportsunresolvedaliases(_:).json │ ├── filedialogmessage(_:)-76jse.json │ ├── filedialogmessage(_:)-7xp34.json │ ├── filedialogmessage(_:)-7zla1.json │ ├── filedialogurlenabled(_:).json │ ├── fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-20e4l.json │ ├── fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-kj1m.json │ ├── fileexporter(ispresented:document:contenttypes:defaultfilename:oncompletion:oncancellation:)-3q4uo.json │ ├── fileexporter(ispresented:document:contenttypes:defaultfilename:oncompletion:oncancellation:)-8qmm9.json │ ├── fileexporter(ispresented:documents:contenttype:oncompletion:)-2ie9o.json │ ├── fileexporter(ispresented:documents:contenttype:oncompletion:)-54ar1.json │ ├── fileexporter(ispresented:documents:contenttypes:oncompletion:oncancellation:)-14r9g.json │ ├── fileexporter(ispresented:documents:contenttypes:oncompletion:oncancellation:)-14wst.json │ ├── fileexporter(ispresented:item:contenttypes:defaultfilename:oncompletion:oncancellation:).json │ ├── fileexporter(ispresented:items:contenttypes:oncompletion:oncancellation:).json │ ├── fileexporterfilenamelabel(_:)-9hd2d.json │ ├── fileexporterfilenamelabel(_:)-exnd.json │ ├── fileexporterfilenamelabel(_:)-s9pk.json │ ├── fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:).json │ ├── fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:oncancellation:).json │ ├── fileimporter(ispresented:allowedcontenttypes:oncompletion:).json │ ├── filemover(ispresented:file:oncompletion:).json │ ├── filemover(ispresented:file:oncompletion:oncancellation:).json │ ├── filemover(ispresented:files:oncompletion:).json │ ├── filemover(ispresented:files:oncompletion:oncancellation:).json │ ├── finddisabled(_:).json │ ├── findnavigator(ispresented:).json │ ├── fixedsize().json │ ├── fixedsize(horizontal:vertical:).json │ ├── flipsforrighttoleftlayoutdirection(_:).json │ ├── focusable(_:).json │ ├── focusable(_:interactions:).json │ ├── focused(_:).json │ ├── focused(_:equals:).json │ ├── focusedobject(_:)-41gia.json │ ├── focusedobject(_:)-4rb1d.json │ ├── focusedsceneobject(_:)-2uika.json │ ├── focusedsceneobject(_:)-k6cu.json │ ├── focusedscenevalue(_:).json │ ├── focusedscenevalue(_:_:)-66xjd.json │ ├── focusedscenevalue(_:_:)-7xso.json │ ├── focusedvalue(_:).json │ ├── focusedvalue(_:_:)-22h8q.json │ ├── focusedvalue(_:_:)-m3rc.json │ ├── focuseffectdisabled(_:).json │ ├── font(_:).json │ ├── fontdesign(_:).json │ ├── fontweight(_:).json │ ├── fontwidth(_:).json │ ├── foregroundcolor(_:).json │ ├── foregroundstyle(_:).json │ ├── foregroundstyle(_:_:).json │ ├── foregroundstyle(_:_:_:).json │ ├── formstyle(_:).json │ ├── frame().json │ ├── frame(minwidth:idealwidth:maxwidth:minheight:idealheight:maxheight:alignment:).json │ ├── frame(width:height:alignment:).json │ ├── fullscreencover(ispresented:ondismiss:content:).json │ ├── fullscreencover(item:ondismiss:content:).json │ ├── gaugestyle(_:).json │ ├── geometrygroup().json │ ├── gesture(_:).json │ ├── gesture(_:including:).json │ ├── gesture(_:isenabled:).json │ ├── gesture(_:name:isenabled:).json │ ├── grayscale(_:).json │ ├── gridcellanchor(_:).json │ ├── gridcellcolumns(_:).json │ ├── gridcellunsizedaxes(_:).json │ ├── gridcolumnalignment(_:).json │ ├── groupboxstyle(_:).json │ ├── handgestureshortcut(_:isenabled:).json │ ├── handlesexternalevents(preferring:allowing:).json │ ├── handlingstacktabbartoolbarbehavior(inputnavigationnodetype:).json │ ├── headerprominence(_:).json │ ├── help(_:)-5e9y0.json │ ├── help(_:)-6jt45.json │ ├── help(_:)-74m67.json │ ├── hidden().json │ ├── highprioritygesture(_:including:).json │ ├── highprioritygesture(_:isenabled:).json │ ├── highprioritygesture(_:name:isenabled:).json │ ├── hovereffect(_:).json │ ├── hovereffect(_:isenabled:)-6or5l.json │ ├── hovereffect(_:isenabled:)-xj5.json │ ├── hovereffectdisabled(_:).json │ ├── huerotation(_:).json │ ├── id(_:).json │ ├── ignoressafearea(_:edges:).json │ ├── imagescale(_:).json │ ├── indexviewstyle(_:).json │ ├── init().json │ ├── inspector(ispresented:content:).json │ ├── inspectorcolumnwidth(_:).json │ ├── inspectorcolumnwidth(min:ideal:max:).json │ ├── interactionactivitytrackingtag(_:).json │ ├── interactivedismissdisabled(_:).json │ ├── invalidatablecontent(_:).json │ ├── italic(_:).json │ ├── itemprovider(_:).json │ ├── kerning(_:).json │ ├── keyboardshortcut(_:)-2i4eg.json │ ├── keyboardshortcut(_:)-92jli.json │ ├── keyboardshortcut(_:modifiers:).json │ ├── keyboardshortcut(_:modifiers:localization:).json │ ├── keyboardtype(_:).json │ ├── keyframeanimator(initialvalue:repeating:content:keyframes:).json │ ├── keyframeanimator(initialvalue:trigger:content:keyframes:).json │ ├── labeledcontentstyle(_:).json │ ├── labelshidden().json │ ├── labelstyle(_:).json │ ├── labelsvisibility(_:).json │ ├── layereffect(_:maxsampleoffset:isenabled:).json │ ├── layoutdirectionbehavior(_:).json │ ├── layoutpriority(_:).json │ ├── layoutvalue(key:value:).json │ ├── linelimit(_:)-3zwls.json │ ├── linelimit(_:)-6f6sw.json │ ├── linelimit(_:)-87kus.json │ ├── linelimit(_:)-9x7xm.json │ ├── linelimit(_:reservesspace:).json │ ├── linespacing(_:).json │ ├── listitemtint(_:)-3nxu.json │ ├── listitemtint(_:)-4ajsq.json │ ├── listrowbackground(_:).json │ ├── listrowinsets(_:).json │ ├── listrowseparator(_:edges:).json │ ├── listrowseparatortint(_:edges:).json │ ├── listrowspacing(_:).json │ ├── listsectionseparator(_:edges:).json │ ├── listsectionseparatortint(_:edges:).json │ ├── listsectionspacing(_:)-3llux.json │ ├── listsectionspacing(_:)-98e3w.json │ ├── liststyle(_:).json │ ├── luminancetoalpha().json │ ├── mask(_:).json │ ├── mask(alignment:_:).json │ ├── matchedgeometryeffect(id:in:properties:anchor:issource:).json │ ├── matchedtransitionsource(id:in:).json │ ├── matchedtransitionsource(id:in:configuration:).json │ ├── materialactiveappearance(_:).json │ ├── menuactiondismissbehavior(_:).json │ ├── menuindicator(_:).json │ ├── menuorder(_:).json │ ├── menustyle(_:).json │ ├── minimumscalefactor(_:).json │ ├── modifier(_:).json │ ├── monospaced(_:).json │ ├── monospaceddigit().json │ ├── movedisabled(_:).json │ ├── multilinetextalignment(_:).json │ ├── navigationbarbackbuttonhidden(_:).json │ ├── navigationbarhidden(_:).json │ ├── navigationbaritems(leading:).json │ ├── navigationbaritems(leading:trailing:).json │ ├── navigationbaritems(trailing:).json │ ├── navigationbartitle(_:)-1m1w2.json │ ├── navigationbartitle(_:)-4sfmc.json │ ├── navigationbartitle(_:)-6eayb.json │ ├── navigationbartitle(_:displaymode:)-7cbdo.json │ ├── navigationbartitle(_:displaymode:)-886dx.json │ ├── navigationbartitle(_:displaymode:)-9qmo2.json │ ├── navigationbartitledisplaymode(_:).json │ ├── navigationdestination(for:destination:).json │ ├── navigationdestination(ispresented:destination:).json │ ├── navigationdestination(item:destination:).json │ ├── navigationdocument(_:).json │ ├── navigationdocument(_:preview:)-1w4pz.json │ ├── navigationdocument(_:preview:)-69076.json │ ├── navigationdocument(_:preview:)-7ooro.json │ ├── navigationdocument(_:preview:)-93lt6.json │ ├── navigationenvironmenttriggerhandler(_:).json │ ├── navigationsplitviewcolumnwidth(_:).json │ ├── navigationsplitviewcolumnwidth(min:ideal:max:).json │ ├── navigationsplitviewstyle(_:).json │ ├── navigationtitle(_:)-29wqk.json │ ├── navigationtitle(_:)-2w1en.json │ ├── navigationtitle(_:)-450f9.json │ ├── navigationtitle(_:)-919ez.json │ ├── navigationtitle(_:)-9yk88.json │ ├── navigationtransition(_:).json │ ├── navigationviewstyle(_:).json │ ├── offset(_:).json │ ├── offset(x:y:).json │ ├── onappear(perform:).json │ ├── onchange(of:initial:_:)-31w1g.json │ ├── onchange(of:initial:_:)-3zixc.json │ ├── onchange(of:perform:).json │ ├── oncontinueuseractivity(_:perform:).json │ ├── oncontinuoushover(coordinatespace:perform:).json │ ├── ondisappear(perform:).json │ ├── ondrag(_:).json │ ├── ondrag(_:preview:).json │ ├── ondrop(of:delegate:)-2gtfk.json │ ├── ondrop(of:delegate:)-98x37.json │ ├── ondrop(of:istargeted:perform:)-1e0mh.json │ ├── ondrop(of:istargeted:perform:)-1os00.json │ ├── ondrop(of:istargeted:perform:)-6opfb.json │ ├── ondrop(of:istargeted:perform:)-84yis.json │ ├── ongeometrychange(for:of:action:)-57fhd.json │ ├── ongeometrychange(for:of:action:)-lqhq.json │ ├── onhover(perform:).json │ ├── onkeypress(_:action:).json │ ├── onkeypress(_:phases:action:).json │ ├── onkeypress(characters:phases:action:).json │ ├── onkeypress(keys:phases:action:).json │ ├── onkeypress(phases:action:).json │ ├── onlongpressgesture(minimumduration:maximumdistance:perform:onpressingchanged:).json │ ├── onlongpressgesture(minimumduration:maximumdistance:pressing:perform:).json │ ├── onlongpressgesture(minimumduration:perform:onpressingchanged:).json │ ├── onlongpressgesture(minimumduration:pressing:perform:).json │ ├── onopenurl(perform:).json │ ├── onpencildoubletap(perform:).json │ ├── onpencilsqueeze(perform:).json │ ├── onpreferencechange(_:perform:).json │ ├── onreceive(_:perform:).json │ ├── onscrollgeometrychange(for:of:action:).json │ ├── onscrollphasechange(_:)-3ock4.json │ ├── onscrollphasechange(_:)-6g8i4.json │ ├── onscrolltargetvisibilitychange(idtype:threshold:_:).json │ ├── onscrollvisibilitychange(threshold:_:).json │ ├── onsubmit(of:_:).json │ ├── ontapgesture(count:coordinatespace:perform:).json │ ├── ontapgesture(count:perform:).json │ ├── opacity(_:).json │ ├── overlay(_:alignment:).json │ ├── overlay(_:ignoressafeareaedges:).json │ ├── overlay(_:in:fillstyle:).json │ ├── overlay(alignment:content:).json │ ├── overlaypreferencevalue(_:_:).json │ ├── overlaypreferencevalue(_:alignment:_:).json │ ├── padding(_:)-5g2i6.json │ ├── padding(_:)-7zb2d.json │ ├── padding(_:_:).json │ ├── paletteselectioneffect(_:).json │ ├── persistentsystemoverlays(_:).json │ ├── phaseanimator(_:content:animation:).json │ ├── phaseanimator(_:trigger:content:animation:).json │ ├── pickerstyle(_:).json │ ├── popover(ispresented:attachmentanchor:arrowedge:content:).json │ ├── popover(item:attachmentanchor:arrowedge:content:).json │ ├── position(_:).json │ ├── position(x:y:).json │ ├── preference(key:value:).json │ ├── preferredcolorscheme(_:).json │ ├── presentationbackground(_:).json │ ├── presentationbackground(alignment:content:).json │ ├── presentationbackgroundinteraction(_:).json │ ├── presentationcompactadaptation(_:).json │ ├── presentationcompactadaptation(horizontal:vertical:).json │ ├── presentationcontentinteraction(_:).json │ ├── presentationcornerradius(_:).json │ ├── presentationdetents(_:).json │ ├── presentationdetents(_:selection:).json │ ├── presentationdragindicator(_:).json │ ├── presentationsizing(_:).json │ ├── presentingnavigationsource(id:).json │ ├── previewcontext(_:).json │ ├── previewdevice(_:).json │ ├── previewdisplayname(_:).json │ ├── previewinterfaceorientation(_:).json │ ├── previewlayout(_:).json │ ├── privacysensitive(_:).json │ ├── progressviewstyle(_:).json │ ├── projectioneffect(_:).json │ ├── redacted(reason:).json │ ├── refreshable(action:).json │ ├── registercustompresentablenavigationnodes(_:).json │ ├── renameaction(_:)-40tpl.json │ ├── renameaction(_:)-4e7qp.json │ ├── replacedisabled(_:).json │ ├── rotation3deffect(_:axis:anchor:anchorz:perspective:).json │ ├── rotationeffect(_:anchor:).json │ ├── safeareainset(edge:alignment:spacing:content:)-7dblt.json │ ├── safeareainset(edge:alignment:spacing:content:)-81zak.json │ ├── safeareapadding(_:)-5xin4.json │ ├── safeareapadding(_:)-7enb5.json │ ├── safeareapadding(_:_:).json │ ├── saturation(_:).json │ ├── scaledtofill().json │ ├── scaledtofit().json │ ├── scaleeffect(_:anchor:)-6q3pd.json │ ├── scaleeffect(_:anchor:)-7m6qn.json │ ├── scaleeffect(x:y:anchor:).json │ ├── scenepadding(_:).json │ ├── scenepadding(_:edges:).json │ ├── scrollbouncebehavior(_:axes:).json │ ├── scrollclipdisabled(_:).json │ ├── scrollcontentbackground(_:).json │ ├── scrolldisabled(_:).json │ ├── scrolldismisseskeyboard(_:).json │ ├── scrollindicators(_:axes:).json │ ├── scrollindicatorsflash(onappear:).json │ ├── scrollindicatorsflash(trigger:).json │ ├── scrollinputbehavior(_:for:).json │ ├── scrollposition(_:anchor:).json │ ├── scrollposition(id:anchor:).json │ ├── scrolltargetbehavior(_:).json │ ├── scrolltargetlayout(isenabled:).json │ ├── scrolltransition(_:axis:transition:).json │ ├── scrolltransition(topleading:bottomtrailing:axis:transition:).json │ ├── searchable(text:editabletokens:ispresented:placement:prompt:token:)-1y24e.json │ ├── searchable(text:editabletokens:ispresented:placement:prompt:token:)-5z1i.json │ ├── searchable(text:editabletokens:ispresented:placement:prompt:token:)-unhm.json │ ├── searchable(text:editabletokens:placement:prompt:token:)-1czl0.json │ ├── searchable(text:editabletokens:placement:prompt:token:)-1rn4.json │ ├── searchable(text:editabletokens:placement:prompt:token:)-8j94v.json │ ├── searchable(text:ispresented:placement:prompt:)-2mcv5.json │ ├── searchable(text:ispresented:placement:prompt:)-9j98z.json │ ├── searchable(text:ispresented:placement:prompt:)-gr9l.json │ ├── searchable(text:placement:prompt:)-4wac2.json │ ├── searchable(text:placement:prompt:)-5dwqf.json │ ├── searchable(text:placement:prompt:)-6cbxg.json │ ├── searchable(text:placement:prompt:suggestions:)-2odnn.json │ ├── searchable(text:placement:prompt:suggestions:)-6jpql.json │ ├── searchable(text:placement:prompt:suggestions:)-8jc8t.json │ ├── searchable(text:tokens:ispresented:placement:prompt:token:)-7nl1z.json │ ├── searchable(text:tokens:ispresented:placement:prompt:token:)-8dmj.json │ ├── searchable(text:tokens:ispresented:placement:prompt:token:)-9umbd.json │ ├── searchable(text:tokens:placement:prompt:token:)-5u2w.json │ ├── searchable(text:tokens:placement:prompt:token:)-6qvr8.json │ ├── searchable(text:tokens:placement:prompt:token:)-9p7gv.json │ ├── searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-12qj3.json │ ├── searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-18ewo.json │ ├── searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-4nq5z.json │ ├── searchable(text:tokens:suggestedtokens:placement:prompt:token:)-37ez3.json │ ├── searchable(text:tokens:suggestedtokens:placement:prompt:token:)-59kaq.json │ ├── searchable(text:tokens:suggestedtokens:placement:prompt:token:)-638ci.json │ ├── searchcompletion(_:).json │ ├── searchdictationbehavior(_:).json │ ├── searchfocused(_:).json │ ├── searchfocused(_:equals:).json │ ├── searchpresentationtoolbarbehavior(_:).json │ ├── searchscopes(_:activation:_:).json │ ├── searchscopes(_:scopes:).json │ ├── searchsuggestions(_:).json │ ├── searchsuggestions(_:for:).json │ ├── sectionactions(content:).json │ ├── selectiondisabled(_:).json │ ├── sensoryfeedback(_:trigger:).json │ ├── sensoryfeedback(_:trigger:condition:).json │ ├── sensoryfeedback(trigger:_:).json │ ├── shadow(color:radius:x:y:).json │ ├── sheet(ispresented:ondismiss:content:).json │ ├── sheet(item:ondismiss:content:).json │ ├── simultaneousgesture(_:including:).json │ ├── simultaneousgesture(_:isenabled:).json │ ├── simultaneousgesture(_:name:isenabled:).json │ ├── speechadjustedpitch(_:).json │ ├── speechalwaysincludespunctuation(_:).json │ ├── speechannouncementsqueued(_:).json │ ├── speechspellsoutcharacters(_:).json │ ├── springloadingbehavior(_:).json │ ├── statusbar(hidden:).json │ ├── statusbarhidden(_:).json │ ├── strikethrough(_:pattern:color:).json │ ├── submitlabel(_:).json │ ├── submitscope(_:).json │ ├── swipeactions(edge:allowsfullswipe:content:).json │ ├── symboleffect(_:options:isactive:).json │ ├── symboleffect(_:options:value:).json │ ├── symboleffectsremoved(_:).json │ ├── symbolrenderingmode(_:).json │ ├── symbolvariant(_:).json │ ├── tabitem(_:).json │ ├── tablecolumnheaders(_:).json │ ├── tablestyle(_:).json │ ├── tabviewcustomization(_:).json │ ├── tabviewsidebarbottombar(content:).json │ ├── tabviewsidebarfooter(content:).json │ ├── tabviewsidebarheader(content:).json │ ├── tabviewstyle(_:).json │ ├── tag(_:includeoptional:).json │ ├── task(id:priority:_:).json │ ├── task(priority:_:).json │ ├── textcase(_:).json │ ├── textcontenttype(_:).json │ ├── texteditorstyle(_:).json │ ├── textfieldstyle(_:).json │ ├── textinputautocapitalization(_:).json │ ├── textrenderer(_:).json │ ├── textscale(_:isenabled:).json │ ├── textselection(_:).json │ ├── textselectionaffinity(_:).json │ ├── tint(_:).json │ ├── togglestyle(_:).json │ ├── toolbar(_:for:).json │ ├── toolbar(content:)-4end1.json │ ├── toolbar(content:)-8w3c0.json │ ├── toolbar(id:content:).json │ ├── toolbar(removing:).json │ ├── toolbarbackground(_:for:).json │ ├── toolbarbackgroundvisibility(_:for:).json │ ├── toolbarcolorscheme(_:for:).json │ ├── toolbarforegroundstyle(_:for:).json │ ├── toolbarrole(_:).json │ ├── toolbartitledisplaymode(_:).json │ ├── toolbartitlemenu(content:).json │ ├── toolbarvisibility(_:for:).json │ ├── tracking(_:).json │ ├── transaction(_:).json │ ├── transaction(_:body:).json │ ├── transaction(value:_:).json │ ├── transformanchorpreference(key:value:transform:).json │ ├── transformeffect(_:).json │ ├── transformenvironment(_:transform:).json │ ├── transformpreference(_:_:).json │ ├── transition(_:).json │ ├── truncationmode(_:).json │ ├── typeselectequivalent(_:)-4m2ru.json │ ├── typeselectequivalent(_:)-5gb2z.json │ ├── typeselectequivalent(_:)-84236.json │ ├── typesettinglanguage(_:isenabled:)-1bp91.json │ ├── typesettinglanguage(_:isenabled:)-8eiif.json │ ├── underline(_:pattern:color:).json │ ├── unredacted().json │ ├── useractivity(_:element:_:).json │ ├── useractivity(_:isactive:_:).json │ ├── view-implementations.json │ ├── visualeffect(_:).json │ ├── windowtoolbarfullscreenvisibility(_:).json │ ├── writingtoolsbehavior(_:).json │ └── zindex(_:).json │ ├── switchnavigationcommand.json │ ├── switchnavigationcommand │ ├── canexecute(on:).json │ ├── execute(on:).json │ ├── init(switchednode:).json │ ├── navigationcommand-implementations.json │ ├── perform(animated:action:).json │ └── switchnode(_:).json │ ├── tabnode.json │ ├── tabnode │ ├── id.json │ ├── navigationnode.json │ └── resolvedview.json │ ├── tabsrootnavigationnode().json │ ├── tabsrootnavigationnode.json │ ├── tabsrootnavigationnode │ ├── body(for:).json │ ├── modifiedview.json │ ├── selectedtabnodeid.json │ └── tabsnodes.json │ ├── tabsrootnavigationnodeview.json │ ├── tabsrootnavigationnodeview │ ├── accentcolor(_:).json │ ├── accessibility(activationpoint:)-1nh0s.json │ ├── accessibility(activationpoint:)-3u2kw.json │ ├── accessibility(addtraits:).json │ ├── accessibility(hidden:).json │ ├── accessibility(hint:).json │ ├── accessibility(identifier:).json │ ├── accessibility(inputlabels:).json │ ├── accessibility(label:).json │ ├── accessibility(removetraits:).json │ ├── accessibility(selectionidentifier:).json │ ├── accessibility(sortpriority:).json │ ├── accessibility(value:).json │ ├── accessibilityaction(_:_:).json │ ├── accessibilityaction(action:label:).json │ ├── accessibilityaction(named:_:)-1aq1d.json │ ├── accessibilityaction(named:_:)-31syd.json │ ├── accessibilityaction(named:_:)-4xxqa.json │ ├── accessibilityactions(_:).json │ ├── accessibilityactions(category:_:).json │ ├── accessibilityactivationpoint(_:)-2c1eg.json │ ├── accessibilityactivationpoint(_:)-63q81.json │ ├── accessibilityactivationpoint(_:isenabled:)-3ci0a.json │ ├── accessibilityactivationpoint(_:isenabled:)-5z1fs.json │ ├── accessibilityaddtraits(_:).json │ ├── accessibilityadjustableaction(_:).json │ ├── accessibilitychartdescriptor(_:).json │ ├── accessibilitychildren(children:).json │ ├── accessibilitycustomcontent(_:_:importance:)-21i9b.json │ ├── accessibilitycustomcontent(_:_:importance:)-4diiu.json │ ├── accessibilitycustomcontent(_:_:importance:)-5rqbs.json │ ├── accessibilitycustomcontent(_:_:importance:)-6fd8o.json │ ├── accessibilitycustomcontent(_:_:importance:)-83d48.json │ ├── accessibilitycustomcontent(_:_:importance:)-9ws4n.json │ ├── accessibilitycustomcontent(_:_:importance:)-9xu95.json │ ├── accessibilitycustomcontent(_:_:importance:)-m1i6.json │ ├── accessibilitydirecttouch(_:options:).json │ ├── accessibilitydragpoint(_:description:)-5hxrv.json │ ├── accessibilitydragpoint(_:description:)-75t24.json │ ├── accessibilitydragpoint(_:description:)-9co2n.json │ ├── accessibilitydragpoint(_:description:isenabled:)-2wpxz.json │ ├── accessibilitydragpoint(_:description:isenabled:)-2xhej.json │ ├── accessibilitydragpoint(_:description:isenabled:)-4h0c7.json │ ├── accessibilitydroppoint(_:description:)-3iy27.json │ ├── accessibilitydroppoint(_:description:)-544xw.json │ ├── accessibilitydroppoint(_:description:)-5kfk0.json │ ├── accessibilitydroppoint(_:description:isenabled:)-3uqi5.json │ ├── accessibilitydroppoint(_:description:isenabled:)-4iftj.json │ ├── accessibilitydroppoint(_:description:isenabled:)-59hgf.json │ ├── accessibilityelement(children:).json │ ├── accessibilityfocused(_:).json │ ├── accessibilityfocused(_:equals:).json │ ├── accessibilityheading(_:).json │ ├── accessibilityhidden(_:).json │ ├── accessibilityhidden(_:isenabled:).json │ ├── accessibilityhint(_:)-23fz4.json │ ├── accessibilityhint(_:)-3qrk0.json │ ├── accessibilityhint(_:)-4zfoy.json │ ├── accessibilityhint(_:isenabled:)-1d09p.json │ ├── accessibilityhint(_:isenabled:)-2x71z.json │ ├── accessibilityhint(_:isenabled:)-6n31s.json │ ├── accessibilityidentifier(_:).json │ ├── accessibilityidentifier(_:isenabled:).json │ ├── accessibilityignoresinvertcolors(_:).json │ ├── accessibilityinputlabels(_:)-300za.json │ ├── accessibilityinputlabels(_:)-3k7d7.json │ ├── accessibilityinputlabels(_:)-9ji7h.json │ ├── accessibilityinputlabels(_:isenabled:)-3jj3m.json │ ├── accessibilityinputlabels(_:isenabled:)-81d95.json │ ├── accessibilityinputlabels(_:isenabled:)-fjv6.json │ ├── accessibilitylabel(_:)-2n48w.json │ ├── accessibilitylabel(_:)-66shg.json │ ├── accessibilitylabel(_:)-8020b.json │ ├── accessibilitylabel(_:isenabled:)-6gbpf.json │ ├── accessibilitylabel(_:isenabled:)-80073.json │ ├── accessibilitylabel(_:isenabled:)-9rxsm.json │ ├── accessibilitylabel(content:).json │ ├── accessibilitylabeledpair(role:id:in:).json │ ├── accessibilitylinkedgroup(id:in:).json │ ├── accessibilityremovetraits(_:).json │ ├── accessibilityrepresentation(representation:).json │ ├── accessibilityrespondstouserinteraction(_:).json │ ├── accessibilityrespondstouserinteraction(_:isenabled:).json │ ├── accessibilityrotor(_:entries:)-2u3b3.json │ ├── accessibilityrotor(_:entries:)-4k80n.json │ ├── accessibilityrotor(_:entries:)-5gyt6.json │ ├── accessibilityrotor(_:entries:)-96o00.json │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-128qe.json │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-49686.json │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-9e042.json │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-pndh.json │ ├── accessibilityrotor(_:entries:entrylabel:)-6tchk.json │ ├── accessibilityrotor(_:entries:entrylabel:)-7gvci.json │ ├── accessibilityrotor(_:entries:entrylabel:)-8yyu5.json │ ├── accessibilityrotor(_:entries:entrylabel:)-imfi.json │ ├── accessibilityrotor(_:textranges:)-3sets.json │ ├── accessibilityrotor(_:textranges:)-5254y.json │ ├── accessibilityrotor(_:textranges:)-6adv9.json │ ├── accessibilityrotor(_:textranges:)-dwcu.json │ ├── accessibilityrotorentry(id:in:).json │ ├── accessibilityscrollaction(_:).json │ ├── accessibilityshowslargecontentviewer().json │ ├── accessibilityshowslargecontentviewer(_:).json │ ├── accessibilitysortpriority(_:).json │ ├── accessibilitytextcontenttype(_:).json │ ├── accessibilityvalue(_:)-31k6z.json │ ├── accessibilityvalue(_:)-3bzr0.json │ ├── accessibilityvalue(_:)-6iohx.json │ ├── accessibilityvalue(_:isenabled:)-5wrf3.json │ ├── accessibilityvalue(_:isenabled:)-6nygh.json │ ├── accessibilityvalue(_:isenabled:)-6q4v9.json │ ├── accessibilityzoomaction(_:).json │ ├── actionsheet(ispresented:content:).json │ ├── actionsheet(item:content:).json │ ├── alert(_:ispresented:actions:)-1o5tk.json │ ├── alert(_:ispresented:actions:)-5az75.json │ ├── alert(_:ispresented:actions:)-6fafh.json │ ├── alert(_:ispresented:actions:message:)-3sktt.json │ ├── alert(_:ispresented:actions:message:)-87qj3.json │ ├── alert(_:ispresented:actions:message:)-9bi3s.json │ ├── alert(_:ispresented:presenting:actions:)-4k4je.json │ ├── alert(_:ispresented:presenting:actions:)-8lupe.json │ ├── alert(_:ispresented:presenting:actions:)-8pbzx.json │ ├── alert(_:ispresented:presenting:actions:message:)-1k92y.json │ ├── alert(_:ispresented:presenting:actions:message:)-5uals.json │ ├── alert(_:ispresented:presenting:actions:message:)-75c7c.json │ ├── alert(ispresented:content:).json │ ├── alert(ispresented:error:actions:).json │ ├── alert(ispresented:error:actions:message:).json │ ├── alert(item:content:).json │ ├── alignmentguide(_:computevalue:)-52jtu.json │ ├── alignmentguide(_:computevalue:)-86dmc.json │ ├── alloweddynamicrange(_:).json │ ├── allowshittesting(_:).json │ ├── allowstightening(_:).json │ ├── allowswindowactivationevents(_:).json │ ├── anchorpreference(key:value:transform:).json │ ├── animation(_:).json │ ├── animation(_:body:).json │ ├── animation(_:value:).json │ ├── aspectratio(_:contentmode:)-5xtuo.json │ ├── aspectratio(_:contentmode:)-sjtb.json │ ├── autocapitalization(_:).json │ ├── autocorrectiondisabled(_:).json │ ├── background(_:alignment:).json │ ├── background(_:ignoressafeareaedges:).json │ ├── background(_:in:fillstyle:)-6014t.json │ ├── background(_:in:fillstyle:)-tgj7.json │ ├── background(alignment:content:).json │ ├── background(ignoressafeareaedges:).json │ ├── background(in:fillstyle:)-4dtgw.json │ ├── background(in:fillstyle:)-5rnpj.json │ ├── backgroundpreferencevalue(_:_:).json │ ├── backgroundpreferencevalue(_:alignment:_:).json │ ├── backgroundstyle(_:).json │ ├── badge(_:)-3pyzx.json │ ├── badge(_:)-6xk5x.json │ ├── badge(_:)-80wnh.json │ ├── badge(_:)-8q78e.json │ ├── badgeprominence(_:).json │ ├── baselineoffset(_:).json │ ├── blendmode(_:).json │ ├── blur(radius:opaque:).json │ ├── body.json │ ├── bold(_:).json │ ├── border(_:width:).json │ ├── brightness(_:).json │ ├── buttonbordershape(_:).json │ ├── buttonrepeatbehavior(_:).json │ ├── buttonstyle(_:)-1hmmh.json │ ├── buttonstyle(_:)-1mv2p.json │ ├── clipped(antialiased:).json │ ├── clipshape(_:style:).json │ ├── coloreffect(_:isenabled:).json │ ├── colorinvert().json │ ├── colormultiply(_:).json │ ├── colorscheme(_:).json │ ├── compositinggroup().json │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-2v9ma.json │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-4cjhg.json │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-5emh.json │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-2oihf.json │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-3ct9r.json │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-3r8h6.json │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-23gkk.json │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-5b8qp.json │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-g4d2.json │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-4foh9.json │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-8qcil.json │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-91bzw.json │ ├── containerbackground(_:for:).json │ ├── containerbackground(for:alignment:content:).json │ ├── containerrelativeframe(_:alignment:).json │ ├── containerrelativeframe(_:alignment:_:).json │ ├── containerrelativeframe(_:count:span:spacing:alignment:).json │ ├── containershape(_:).json │ ├── containervalue(_:_:).json │ ├── contentmargins(_:_:for:)-2kx23.json │ ├── contentmargins(_:_:for:)-8tq1h.json │ ├── contentmargins(_:for:).json │ ├── contentshape(_:_:eofill:).json │ ├── contentshape(_:eofill:).json │ ├── contenttransition(_:).json │ ├── contextmenu(_:).json │ ├── contextmenu(forselectiontype:menu:primaryaction:).json │ ├── contextmenu(menuitems:).json │ ├── contextmenu(menuitems:preview:).json │ ├── contrast(_:).json │ ├── controlgroupstyle(_:).json │ ├── controlsize(_:).json │ ├── coordinatespace(_:).json │ ├── coordinatespace(name:).json │ ├── cornerradius(_:antialiased:).json │ ├── datepickerstyle(_:).json │ ├── defaultadaptabletabbarplacement(_:).json │ ├── defaultappstorage(_:).json │ ├── defaultfocus(_:_:priority:).json │ ├── defaulthovereffect(_:)-402e9.json │ ├── defaulthovereffect(_:)-jyt3.json │ ├── defaultscrollanchor(_:).json │ ├── defaultscrollanchor(_:for:).json │ ├── deferssystemgestures(on:).json │ ├── deletedisabled(_:).json │ ├── dialogicon(_:).json │ ├── dialogsuppressiontoggle(_:issuppressed:)-41mui.json │ ├── dialogsuppressiontoggle(_:issuppressed:)-5wxj1.json │ ├── dialogsuppressiontoggle(_:issuppressed:)-8j7hl.json │ ├── dialogsuppressiontoggle(issuppressed:).json │ ├── disableautocorrection(_:).json │ ├── disabled(_:).json │ ├── disclosuregroupstyle(_:).json │ ├── distortioneffect(_:maxsampleoffset:isenabled:).json │ ├── documentbrowsercontextmenu(_:).json │ ├── draggable(_:).json │ ├── draggable(_:preview:).json │ ├── drawinggroup(opaque:colormode:).json │ ├── dropdestination(for:action:istargeted:).json │ ├── dynamictypesize(_:).json │ ├── edgesignoringsafearea(_:).json │ ├── environment(_:).json │ ├── environment(_:_:).json │ ├── environmentobject(_:).json │ ├── filedialogbrowseroptions(_:).json │ ├── filedialogconfirmationlabel(_:)-3rlqn.json │ ├── filedialogconfirmationlabel(_:)-44rr7.json │ ├── filedialogconfirmationlabel(_:)-8wv32.json │ ├── filedialogcustomizationid(_:).json │ ├── filedialogdefaultdirectory(_:).json │ ├── filedialogimportsunresolvedaliases(_:).json │ ├── filedialogmessage(_:)-2siks.json │ ├── filedialogmessage(_:)-31lnl.json │ ├── filedialogmessage(_:)-3uzei.json │ ├── filedialogurlenabled(_:).json │ ├── fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-1pv4s.json │ ├── fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-2cpob.json │ ├── fileexporter(ispresented:document:contenttypes:defaultfilename:oncompletion:oncancellation:)-59vkm.json │ ├── fileexporter(ispresented:document:contenttypes:defaultfilename:oncompletion:oncancellation:)-8zo6u.json │ ├── fileexporter(ispresented:documents:contenttype:oncompletion:)-4p8zh.json │ ├── fileexporter(ispresented:documents:contenttype:oncompletion:)-7j9yu.json │ ├── fileexporter(ispresented:documents:contenttypes:oncompletion:oncancellation:)-2oyvc.json │ ├── fileexporter(ispresented:documents:contenttypes:oncompletion:oncancellation:)-3e7vo.json │ ├── fileexporter(ispresented:item:contenttypes:defaultfilename:oncompletion:oncancellation:).json │ ├── fileexporter(ispresented:items:contenttypes:oncompletion:oncancellation:).json │ ├── fileexporterfilenamelabel(_:)-6nlnf.json │ ├── fileexporterfilenamelabel(_:)-8ay0g.json │ ├── fileexporterfilenamelabel(_:)-a31c.json │ ├── fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:).json │ ├── fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:oncancellation:).json │ ├── fileimporter(ispresented:allowedcontenttypes:oncompletion:).json │ ├── filemover(ispresented:file:oncompletion:).json │ ├── filemover(ispresented:file:oncompletion:oncancellation:).json │ ├── filemover(ispresented:files:oncompletion:).json │ ├── filemover(ispresented:files:oncompletion:oncancellation:).json │ ├── finddisabled(_:).json │ ├── findnavigator(ispresented:).json │ ├── fixedsize().json │ ├── fixedsize(horizontal:vertical:).json │ ├── flipsforrighttoleftlayoutdirection(_:).json │ ├── focusable(_:).json │ ├── focusable(_:interactions:).json │ ├── focused(_:).json │ ├── focused(_:equals:).json │ ├── focusedobject(_:)-1k369.json │ ├── focusedobject(_:)-89hsk.json │ ├── focusedsceneobject(_:)-4g8e5.json │ ├── focusedsceneobject(_:)-65tb7.json │ ├── focusedscenevalue(_:).json │ ├── focusedscenevalue(_:_:)-6fz3y.json │ ├── focusedscenevalue(_:_:)-8qn2l.json │ ├── focusedvalue(_:).json │ ├── focusedvalue(_:_:)-8l92l.json │ ├── focusedvalue(_:_:)-9bs2y.json │ ├── focuseffectdisabled(_:).json │ ├── font(_:).json │ ├── fontdesign(_:).json │ ├── fontweight(_:).json │ ├── fontwidth(_:).json │ ├── foregroundcolor(_:).json │ ├── foregroundstyle(_:).json │ ├── foregroundstyle(_:_:).json │ ├── foregroundstyle(_:_:_:).json │ ├── formstyle(_:).json │ ├── frame().json │ ├── frame(minwidth:idealwidth:maxwidth:minheight:idealheight:maxheight:alignment:).json │ ├── frame(width:height:alignment:).json │ ├── fullscreencover(ispresented:ondismiss:content:).json │ ├── fullscreencover(item:ondismiss:content:).json │ ├── gaugestyle(_:).json │ ├── geometrygroup().json │ ├── gesture(_:).json │ ├── gesture(_:including:).json │ ├── gesture(_:isenabled:).json │ ├── gesture(_:name:isenabled:).json │ ├── grayscale(_:).json │ ├── gridcellanchor(_:).json │ ├── gridcellcolumns(_:).json │ ├── gridcellunsizedaxes(_:).json │ ├── gridcolumnalignment(_:).json │ ├── groupboxstyle(_:).json │ ├── handgestureshortcut(_:isenabled:).json │ ├── handlesexternalevents(preferring:allowing:).json │ ├── handlingstacktabbartoolbarbehavior(inputnavigationnodetype:).json │ ├── headerprominence(_:).json │ ├── help(_:)-47upp.json │ ├── help(_:)-8xkkn.json │ ├── help(_:)-mpzb.json │ ├── hidden().json │ ├── highprioritygesture(_:including:).json │ ├── highprioritygesture(_:isenabled:).json │ ├── highprioritygesture(_:name:isenabled:).json │ ├── hovereffect(_:).json │ ├── hovereffect(_:isenabled:)-1cj68.json │ ├── hovereffect(_:isenabled:)-8t8mw.json │ ├── hovereffectdisabled(_:).json │ ├── huerotation(_:).json │ ├── id(_:).json │ ├── ignoressafearea(_:edges:).json │ ├── imagescale(_:).json │ ├── indexviewstyle(_:).json │ ├── init().json │ ├── inspector(ispresented:content:).json │ ├── inspectorcolumnwidth(_:).json │ ├── inspectorcolumnwidth(min:ideal:max:).json │ ├── interactionactivitytrackingtag(_:).json │ ├── interactivedismissdisabled(_:).json │ ├── invalidatablecontent(_:).json │ ├── italic(_:).json │ ├── itemprovider(_:).json │ ├── kerning(_:).json │ ├── keyboardshortcut(_:)-3ajpb.json │ ├── keyboardshortcut(_:)-3aznj.json │ ├── keyboardshortcut(_:modifiers:).json │ ├── keyboardshortcut(_:modifiers:localization:).json │ ├── keyboardtype(_:).json │ ├── keyframeanimator(initialvalue:repeating:content:keyframes:).json │ ├── keyframeanimator(initialvalue:trigger:content:keyframes:).json │ ├── labeledcontentstyle(_:).json │ ├── labelshidden().json │ ├── labelstyle(_:).json │ ├── labelsvisibility(_:).json │ ├── layereffect(_:maxsampleoffset:isenabled:).json │ ├── layoutdirectionbehavior(_:).json │ ├── layoutpriority(_:).json │ ├── layoutvalue(key:value:).json │ ├── linelimit(_:)-42xri.json │ ├── linelimit(_:)-5a8re.json │ ├── linelimit(_:)-8gk8e.json │ ├── linelimit(_:)-900gj.json │ ├── linelimit(_:reservesspace:).json │ ├── linespacing(_:).json │ ├── listitemtint(_:)-4dn0v.json │ ├── listitemtint(_:)-7tsf4.json │ ├── listrowbackground(_:).json │ ├── listrowinsets(_:).json │ ├── listrowseparator(_:edges:).json │ ├── listrowseparatortint(_:edges:).json │ ├── listrowspacing(_:).json │ ├── listsectionseparator(_:edges:).json │ ├── listsectionseparatortint(_:edges:).json │ ├── listsectionspacing(_:)-3m528.json │ ├── listsectionspacing(_:)-87sfy.json │ ├── liststyle(_:).json │ ├── luminancetoalpha().json │ ├── mask(_:).json │ ├── mask(alignment:_:).json │ ├── matchedgeometryeffect(id:in:properties:anchor:issource:).json │ ├── matchedtransitionsource(id:in:).json │ ├── matchedtransitionsource(id:in:configuration:).json │ ├── materialactiveappearance(_:).json │ ├── menuactiondismissbehavior(_:).json │ ├── menuindicator(_:).json │ ├── menuorder(_:).json │ ├── menustyle(_:).json │ ├── minimumscalefactor(_:).json │ ├── modifier(_:).json │ ├── monospaced(_:).json │ ├── monospaceddigit().json │ ├── movedisabled(_:).json │ ├── multilinetextalignment(_:).json │ ├── navigationbarbackbuttonhidden(_:).json │ ├── navigationbarhidden(_:).json │ ├── navigationbaritems(leading:).json │ ├── navigationbaritems(leading:trailing:).json │ ├── navigationbaritems(trailing:).json │ ├── navigationbartitle(_:)-2qwqp.json │ ├── navigationbartitle(_:)-919pw.json │ ├── navigationbartitle(_:)-o0tv.json │ ├── navigationbartitle(_:displaymode:)-1yzys.json │ ├── navigationbartitle(_:displaymode:)-34afm.json │ ├── navigationbartitle(_:displaymode:)-74emy.json │ ├── navigationbartitledisplaymode(_:).json │ ├── navigationdestination(for:destination:).json │ ├── navigationdestination(ispresented:destination:).json │ ├── navigationdestination(item:destination:).json │ ├── navigationdocument(_:).json │ ├── navigationdocument(_:preview:)-36glk.json │ ├── navigationdocument(_:preview:)-6sk63.json │ ├── navigationdocument(_:preview:)-6z1b7.json │ ├── navigationdocument(_:preview:)-7bdu6.json │ ├── navigationenvironmenttriggerhandler(_:).json │ ├── navigationsplitviewcolumnwidth(_:).json │ ├── navigationsplitviewcolumnwidth(min:ideal:max:).json │ ├── navigationsplitviewstyle(_:).json │ ├── navigationtitle(_:)-3k8kn.json │ ├── navigationtitle(_:)-4mcbl.json │ ├── navigationtitle(_:)-717h4.json │ ├── navigationtitle(_:)-9u6pq.json │ ├── navigationtitle(_:)-s6bg.json │ ├── navigationtransition(_:).json │ ├── navigationviewstyle(_:).json │ ├── offset(_:).json │ ├── offset(x:y:).json │ ├── onappear(perform:).json │ ├── onchange(of:initial:_:)-4tnfv.json │ ├── onchange(of:initial:_:)-64ztn.json │ ├── onchange(of:perform:).json │ ├── oncontinueuseractivity(_:perform:).json │ ├── oncontinuoushover(coordinatespace:perform:).json │ ├── ondisappear(perform:).json │ ├── ondrag(_:).json │ ├── ondrag(_:preview:).json │ ├── ondrop(of:delegate:)-8qq8l.json │ ├── ondrop(of:delegate:)-fal9.json │ ├── ondrop(of:istargeted:perform:)-2r9hn.json │ ├── ondrop(of:istargeted:perform:)-5bjt9.json │ ├── ondrop(of:istargeted:perform:)-881q1.json │ ├── ondrop(of:istargeted:perform:)-hg5u.json │ ├── ongeometrychange(for:of:action:)-2zhwa.json │ ├── ongeometrychange(for:of:action:)-8d6a4.json │ ├── onhover(perform:).json │ ├── onkeypress(_:action:).json │ ├── onkeypress(_:phases:action:).json │ ├── onkeypress(characters:phases:action:).json │ ├── onkeypress(keys:phases:action:).json │ ├── onkeypress(phases:action:).json │ ├── onlongpressgesture(minimumduration:maximumdistance:perform:onpressingchanged:).json │ ├── onlongpressgesture(minimumduration:maximumdistance:pressing:perform:).json │ ├── onlongpressgesture(minimumduration:perform:onpressingchanged:).json │ ├── onlongpressgesture(minimumduration:pressing:perform:).json │ ├── onopenurl(perform:).json │ ├── onpencildoubletap(perform:).json │ ├── onpencilsqueeze(perform:).json │ ├── onpreferencechange(_:perform:).json │ ├── onreceive(_:perform:).json │ ├── onscrollgeometrychange(for:of:action:).json │ ├── onscrollphasechange(_:)-1oaq3.json │ ├── onscrollphasechange(_:)-9xg8t.json │ ├── onscrolltargetvisibilitychange(idtype:threshold:_:).json │ ├── onscrollvisibilitychange(threshold:_:).json │ ├── onsubmit(of:_:).json │ ├── ontapgesture(count:coordinatespace:perform:).json │ ├── ontapgesture(count:perform:).json │ ├── opacity(_:).json │ ├── overlay(_:alignment:).json │ ├── overlay(_:ignoressafeareaedges:).json │ ├── overlay(_:in:fillstyle:).json │ ├── overlay(alignment:content:).json │ ├── overlaypreferencevalue(_:_:).json │ ├── overlaypreferencevalue(_:alignment:_:).json │ ├── padding(_:)-9o3y0.json │ ├── padding(_:)-9rh8s.json │ ├── padding(_:_:).json │ ├── paletteselectioneffect(_:).json │ ├── persistentsystemoverlays(_:).json │ ├── phaseanimator(_:content:animation:).json │ ├── phaseanimator(_:trigger:content:animation:).json │ ├── pickerstyle(_:).json │ ├── popover(ispresented:attachmentanchor:arrowedge:content:).json │ ├── popover(item:attachmentanchor:arrowedge:content:).json │ ├── position(_:).json │ ├── position(x:y:).json │ ├── preference(key:value:).json │ ├── preferredcolorscheme(_:).json │ ├── presentationbackground(_:).json │ ├── presentationbackground(alignment:content:).json │ ├── presentationbackgroundinteraction(_:).json │ ├── presentationcompactadaptation(_:).json │ ├── presentationcompactadaptation(horizontal:vertical:).json │ ├── presentationcontentinteraction(_:).json │ ├── presentationcornerradius(_:).json │ ├── presentationdetents(_:).json │ ├── presentationdetents(_:selection:).json │ ├── presentationdragindicator(_:).json │ ├── presentationsizing(_:).json │ ├── presentingnavigationsource(id:).json │ ├── previewcontext(_:).json │ ├── previewdevice(_:).json │ ├── previewdisplayname(_:).json │ ├── previewinterfaceorientation(_:).json │ ├── previewlayout(_:).json │ ├── privacysensitive(_:).json │ ├── progressviewstyle(_:).json │ ├── projectioneffect(_:).json │ ├── redacted(reason:).json │ ├── refreshable(action:).json │ ├── registercustompresentablenavigationnodes(_:).json │ ├── renameaction(_:)-3qaps.json │ ├── renameaction(_:)-5btzm.json │ ├── replacedisabled(_:).json │ ├── rotation3deffect(_:axis:anchor:anchorz:perspective:).json │ ├── rotationeffect(_:anchor:).json │ ├── safeareainset(edge:alignment:spacing:content:)-3gbru.json │ ├── safeareainset(edge:alignment:spacing:content:)-6piqt.json │ ├── safeareapadding(_:)-11twu.json │ ├── safeareapadding(_:)-3nzne.json │ ├── safeareapadding(_:_:).json │ ├── saturation(_:).json │ ├── scaledtofill().json │ ├── scaledtofit().json │ ├── scaleeffect(_:anchor:)-7v89g.json │ ├── scaleeffect(_:anchor:)-9e3yl.json │ ├── scaleeffect(x:y:anchor:).json │ ├── scenepadding(_:).json │ ├── scenepadding(_:edges:).json │ ├── scrollbouncebehavior(_:axes:).json │ ├── scrollclipdisabled(_:).json │ ├── scrollcontentbackground(_:).json │ ├── scrolldisabled(_:).json │ ├── scrolldismisseskeyboard(_:).json │ ├── scrollindicators(_:axes:).json │ ├── scrollindicatorsflash(onappear:).json │ ├── scrollindicatorsflash(trigger:).json │ ├── scrollinputbehavior(_:for:).json │ ├── scrollposition(_:anchor:).json │ ├── scrollposition(id:anchor:).json │ ├── scrolltargetbehavior(_:).json │ ├── scrolltargetlayout(isenabled:).json │ ├── scrolltransition(_:axis:transition:).json │ ├── scrolltransition(topleading:bottomtrailing:axis:transition:).json │ ├── searchable(text:editabletokens:ispresented:placement:prompt:token:)-4d0f4.json │ ├── searchable(text:editabletokens:ispresented:placement:prompt:token:)-7c6n0.json │ ├── searchable(text:editabletokens:ispresented:placement:prompt:token:)-9hsiq.json │ ├── searchable(text:editabletokens:placement:prompt:token:)-12gl9.json │ ├── searchable(text:editabletokens:placement:prompt:token:)-9lqdc.json │ ├── searchable(text:editabletokens:placement:prompt:token:)-9qu08.json │ ├── searchable(text:ispresented:placement:prompt:)-36fo0.json │ ├── searchable(text:ispresented:placement:prompt:)-3jz42.json │ ├── searchable(text:ispresented:placement:prompt:)-7vz35.json │ ├── searchable(text:placement:prompt:)-50llr.json │ ├── searchable(text:placement:prompt:)-7w2ne.json │ ├── searchable(text:placement:prompt:)-9ih8p.json │ ├── searchable(text:placement:prompt:suggestions:)-2a8le.json │ ├── searchable(text:placement:prompt:suggestions:)-2vy4i.json │ ├── searchable(text:placement:prompt:suggestions:)-6b5n3.json │ ├── searchable(text:tokens:ispresented:placement:prompt:token:)-3kvc3.json │ ├── searchable(text:tokens:ispresented:placement:prompt:token:)-4zpn7.json │ ├── searchable(text:tokens:ispresented:placement:prompt:token:)-8r2pa.json │ ├── searchable(text:tokens:placement:prompt:token:)-2wqbx.json │ ├── searchable(text:tokens:placement:prompt:token:)-87x75.json │ ├── searchable(text:tokens:placement:prompt:token:)-9crhs.json │ ├── searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-260yz.json │ ├── searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-92a5x.json │ ├── searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-wq74.json │ ├── searchable(text:tokens:suggestedtokens:placement:prompt:token:)-39c24.json │ ├── searchable(text:tokens:suggestedtokens:placement:prompt:token:)-7j3g2.json │ ├── searchable(text:tokens:suggestedtokens:placement:prompt:token:)-8nbc.json │ ├── searchcompletion(_:).json │ ├── searchdictationbehavior(_:).json │ ├── searchfocused(_:).json │ ├── searchfocused(_:equals:).json │ ├── searchpresentationtoolbarbehavior(_:).json │ ├── searchscopes(_:activation:_:).json │ ├── searchscopes(_:scopes:).json │ ├── searchsuggestions(_:).json │ ├── searchsuggestions(_:for:).json │ ├── sectionactions(content:).json │ ├── selectiondisabled(_:).json │ ├── sensoryfeedback(_:trigger:).json │ ├── sensoryfeedback(_:trigger:condition:).json │ ├── sensoryfeedback(trigger:_:).json │ ├── shadow(color:radius:x:y:).json │ ├── sheet(ispresented:ondismiss:content:).json │ ├── sheet(item:ondismiss:content:).json │ ├── simultaneousgesture(_:including:).json │ ├── simultaneousgesture(_:isenabled:).json │ ├── simultaneousgesture(_:name:isenabled:).json │ ├── speechadjustedpitch(_:).json │ ├── speechalwaysincludespunctuation(_:).json │ ├── speechannouncementsqueued(_:).json │ ├── speechspellsoutcharacters(_:).json │ ├── springloadingbehavior(_:).json │ ├── statusbar(hidden:).json │ ├── statusbarhidden(_:).json │ ├── strikethrough(_:pattern:color:).json │ ├── submitlabel(_:).json │ ├── submitscope(_:).json │ ├── swipeactions(edge:allowsfullswipe:content:).json │ ├── symboleffect(_:options:isactive:).json │ ├── symboleffect(_:options:value:).json │ ├── symboleffectsremoved(_:).json │ ├── symbolrenderingmode(_:).json │ ├── symbolvariant(_:).json │ ├── tabitem(_:).json │ ├── tablecolumnheaders(_:).json │ ├── tablestyle(_:).json │ ├── tabviewcustomization(_:).json │ ├── tabviewsidebarbottombar(content:).json │ ├── tabviewsidebarfooter(content:).json │ ├── tabviewsidebarheader(content:).json │ ├── tabviewstyle(_:).json │ ├── tag(_:includeoptional:).json │ ├── task(id:priority:_:).json │ ├── task(priority:_:).json │ ├── textcase(_:).json │ ├── textcontenttype(_:).json │ ├── texteditorstyle(_:).json │ ├── textfieldstyle(_:).json │ ├── textinputautocapitalization(_:).json │ ├── textrenderer(_:).json │ ├── textscale(_:isenabled:).json │ ├── textselection(_:).json │ ├── textselectionaffinity(_:).json │ ├── tint(_:).json │ ├── togglestyle(_:).json │ ├── toolbar(_:for:).json │ ├── toolbar(content:)-2umaj.json │ ├── toolbar(content:)-4hqk8.json │ ├── toolbar(id:content:).json │ ├── toolbar(removing:).json │ ├── toolbarbackground(_:for:).json │ ├── toolbarbackgroundvisibility(_:for:).json │ ├── toolbarcolorscheme(_:for:).json │ ├── toolbarforegroundstyle(_:for:).json │ ├── toolbarrole(_:).json │ ├── toolbartitledisplaymode(_:).json │ ├── toolbartitlemenu(content:).json │ ├── toolbarvisibility(_:for:).json │ ├── tracking(_:).json │ ├── transaction(_:).json │ ├── transaction(_:body:).json │ ├── transaction(value:_:).json │ ├── transformanchorpreference(key:value:transform:).json │ ├── transformeffect(_:).json │ ├── transformenvironment(_:transform:).json │ ├── transformpreference(_:_:).json │ ├── transition(_:).json │ ├── truncationmode(_:).json │ ├── typeselectequivalent(_:)-2bcpo.json │ ├── typeselectequivalent(_:)-2ci37.json │ ├── typeselectequivalent(_:)-2cjx8.json │ ├── typesettinglanguage(_:isenabled:)-4nl8a.json │ ├── typesettinglanguage(_:isenabled:)-9yu8f.json │ ├── underline(_:pattern:color:).json │ ├── unredacted().json │ ├── useractivity(_:element:_:).json │ ├── useractivity(_:isactive:_:).json │ ├── view-implementations.json │ ├── visualeffect(_:).json │ ├── windowtoolbarfullscreenvisibility(_:).json │ ├── writingtoolsbehavior(_:).json │ └── zindex(_:).json │ ├── tabsselectitemnavigationcommand.json │ ├── tabsselectitemnavigationcommand │ ├── canexecute(on:).json │ ├── execute(on:).json │ ├── init(itemid:).json │ ├── navigationcommand-implementations.json │ ├── perform(animated:action:).json │ └── tabsselectitem(id:).json │ ├── uikit.json │ └── uikit │ ├── uinavigationcontroller.json │ └── uinavigationcontroller │ ├── gesturerecognizershouldbegin(_:).json │ ├── uigesturerecognizerdelegate-implementations.json │ └── viewdidload().json ├── developer-og-twitter.jpg ├── developer-og.jpg ├── documentation └── swiftuinavigation │ ├── alertinputdata │ ├── action │ │ ├── index.html │ │ ├── init(id:title:role:handler:) │ │ │ └── index.html │ │ └── role │ │ │ ├── !=(_:_:) │ │ │ └── index.html │ │ │ ├── cancel │ │ │ └── index.html │ │ │ ├── destructive │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ └── index.html │ │ │ └── index.html │ ├── index.html │ └── init(title:message:actions:) │ │ └── index.html │ ├── alertpresentednavigationnode │ ├── alert(_:sourceid:) │ │ └── index.html │ ├── index.html │ ├── init(inputdata:sourceid:) │ │ └── index.html │ ├── makeispresentedbinding(presentednode:sourceid:) │ │ └── index.html │ ├── node │ │ └── index.html │ ├── presentednavigationnode-implementations │ │ └── index.html │ ├── presenterresolvedviewmodifier(presentednode:content:sourceid:) │ │ └── index.html │ └── sourceid │ │ └── index.html │ ├── anynavigationnode │ ├── addmessagelistener(_:) │ │ └── index.html │ ├── basenavigationnodechildren │ │ └── index.html │ ├── body │ │ └── index.html │ ├── canexecute(_:) │ │ └── index.html │ ├── canpresentifwouldnt │ │ └── index.html │ ├── children │ │ └── index.html │ ├── childrennodeswhichcanpresent │ │ └── index.html │ ├── commonstate │ │ └── index.html │ ├── execute(_:) │ │ └── index.html │ ├── finishifneeded() │ │ └── index.html │ ├── id │ │ └── index.html │ ├── index.html │ ├── init(_:) │ │ └── index.html │ ├── iswrappernode │ │ └── index.html │ ├── navigationnode-implementations │ │ └── index.html │ ├── nearestchildrennodewhichcanpresent │ │ └── index.html │ ├── nearestnodewhichcanpresent │ │ └── index.html │ ├── nearestnodewhichcanpresentfromparent │ │ └── index.html │ ├── objectwillchange │ │ └── index.html │ ├── observableobject-implementations │ │ └── index.html │ ├── onmessagereceived(_:) │ │ └── index.html │ ├── parent │ │ └── index.html │ ├── predecessors │ │ └── index.html │ ├── predecessorsincludingself │ │ └── index.html │ ├── presentednode │ │ └── index.html │ ├── printdebuggraph() │ │ └── index.html │ ├── printdebugtext(_:) │ │ └── index.html │ ├── root │ │ └── index.html │ ├── sendenvironmenttrigger(_:) │ │ └── index.html │ ├── sendmessage(_:) │ │ └── index.html │ ├── startifneeded(parent:) │ │ └── index.html │ ├── successors │ │ └── index.html │ ├── successorsincludingself │ │ └── index.html │ └── toppresented │ │ └── index.html │ ├── commonnavigationnodestate │ ├── index.html │ ├── init() │ │ └── index.html │ ├── objectwillchange │ │ └── index.html │ └── observableobject-implementations │ │ └── index.html │ ├── confirmationdialoginputdata │ ├── action │ │ ├── index.html │ │ ├── init(id:title:role:handler:) │ │ │ └── index.html │ │ └── role │ │ │ ├── !=(_:_:) │ │ │ └── index.html │ │ │ ├── cancel │ │ │ └── index.html │ │ │ ├── destructive │ │ │ └── index.html │ │ │ ├── equatable-implementations │ │ │ └── index.html │ │ │ └── index.html │ ├── index.html │ └── init(message:actions:) │ │ └── index.html │ ├── confirmationdialogpresentednavigationnode │ ├── confirmationdialog(_:sourceid:) │ │ └── index.html │ ├── index.html │ ├── init(inputdata:sourceid:) │ │ └── index.html │ ├── makeispresentedbinding(presentednode:sourceid:) │ │ └── index.html │ ├── node │ │ └── index.html │ ├── presentednavigationnode-implementations │ │ └── index.html │ ├── presenterresolvedviewmodifier(presentednode:content:sourceid:) │ │ └── index.html │ └── sourceid │ │ └── index.html │ ├── defaultnavigationenvironmenttriggerhandler │ ├── handletrigger(_:in:) │ │ └── index.html │ ├── index.html │ └── init() │ │ └── index.html │ ├── defaultstackrootnavigationnode │ ├── addmessagelistener(_:) │ │ └── index.html │ ├── basenavigationnodechildren │ │ └── index.html │ ├── body(for:) │ │ └── index.html │ ├── body │ │ └── index.html │ ├── canexecute(_:) │ │ └── index.html │ ├── canpresentifwouldnt │ │ └── index.html │ ├── children │ │ └── index.html │ ├── childrennodeswhichcanpresent │ │ └── index.html │ ├── execute(_:) │ │ └── index.html │ ├── finishifneeded() │ │ └── index.html │ ├── index.html │ ├── init(stacknodes:tabbartoolbarbehavior:)-6zapr │ │ └── index.html │ ├── init(stacknodes:tabbartoolbarbehavior:)-702b6 │ │ └── index.html │ ├── iswrappernode │ │ └── index.html │ ├── navigationnode-implementations │ │ └── index.html │ ├── nearestchildrennodewhichcanpresent │ │ └── index.html │ ├── nearestnodewhichcanpresent │ │ └── index.html │ ├── nearestnodewhichcanpresentfromparent │ │ └── index.html │ ├── objectwillchange │ │ └── index.html │ ├── observableobject-implementations │ │ └── index.html │ ├── onmessagereceived(_:) │ │ └── index.html │ ├── parent │ │ └── index.html │ ├── predecessors │ │ └── index.html │ ├── predecessorsincludingself │ │ └── index.html │ ├── presentednode │ │ └── index.html │ ├── printdebuggraph() │ │ └── index.html │ ├── printdebugtext(_:) │ │ └── index.html │ ├── root │ │ └── index.html │ ├── sendenvironmenttrigger(_:) │ │ └── index.html │ ├── sendmessage(_:) │ │ └── index.html │ ├── setnewpath(_:) │ │ └── index.html │ ├── stacked(_:tabbartoolbarbehavior:)-2syiq │ │ └── index.html │ ├── stacked(_:tabbartoolbarbehavior:)-4clsl │ │ └── index.html │ ├── stacked(_:tabbartoolbarbehavior:)-4ohiu │ │ └── index.html │ ├── stacked(_:tabbartoolbarbehavior:)-7xm6x │ │ └── index.html │ ├── stacknodes │ │ └── index.html │ ├── stackrootnavigationnode-implementations │ │ └── index.html │ ├── startifneeded(parent:) │ │ └── index.html │ ├── successors │ │ └── index.html │ ├── successorsincludingself │ │ └── index.html │ ├── tabbartoolbarbehavior │ │ └── index.html │ └── toppresented │ │ └── index.html │ ├── defaulttabnode │ ├── id │ │ └── index.html │ ├── index.html │ ├── init(id:image:title:navigationnode:) │ │ └── index.html │ ├── navigationnode │ │ └── index.html │ └── resolvedview │ │ └── index.html │ ├── dismissjustfrompresentednavigationcommand │ ├── canexecute(on:) │ │ └── index.html │ ├── dismissjustfrompresented(animated:) │ │ └── index.html │ ├── execute(on:) │ │ └── index.html │ ├── index.html │ ├── init(animated:) │ │ └── index.html │ ├── navigationcommand-implementations │ │ └── index.html │ └── perform(animated:action:) │ │ └── index.html │ ├── dismissnavigationcommand │ ├── canexecute(on:) │ │ └── index.html │ ├── dismiss(animated:) │ │ └── index.html │ ├── execute(on:) │ │ └── index.html │ ├── index.html │ ├── init(animated:) │ │ └── index.html │ ├── navigationcommand-implementations │ │ └── index.html │ └── perform(animated:action:) │ │ └── index.html │ ├── dismisswindownavigationcommand │ ├── canexecute(on:) │ │ └── index.html │ ├── dismisswindow(id:) │ │ └── index.html │ ├── execute(on:) │ │ └── index.html │ ├── index.html │ ├── init(id:) │ │ └── index.html │ ├── navigationcommand-implementations │ │ └── index.html │ └── perform(animated:action:) │ │ └── index.html │ ├── environmentnavigationnode │ ├── dynamicproperty-implementations │ │ └── index.html │ ├── index.html │ ├── init() │ │ └── index.html │ ├── update() │ │ └── index.html │ └── wrappedvalue │ │ └── index.html │ ├── equatablenavigationnode │ ├── !=(_:_:) │ │ └── index.html │ ├── ==(_:_:) │ │ └── index.html │ ├── equatable-implementations │ │ └── index.html │ ├── index.html │ └── wrapped │ │ └── index.html │ ├── fullscreencoverpresentednavigationnode │ ├── fullscreencover(_:) │ │ └── index.html │ ├── index.html │ ├── makeispresentedbinding(presentednode:sourceid:) │ │ └── index.html │ ├── node │ │ └── index.html │ ├── presentednavigationnode-implementations │ │ └── index.html │ ├── presenterresolvedviewmodifier(presentednode:content:sourceid:) │ │ └── index.html │ └── sourceid │ │ └── index.html │ ├── index.html │ ├── navigationcommand │ ├── canexecute(on:) │ │ └── index.html │ ├── dismiss(animated:) │ │ └── index.html │ ├── dismissjustfrompresented(animated:) │ │ └── index.html │ ├── dismisswindow(id:) │ │ └── index.html │ ├── execute(on:) │ │ └── index.html │ ├── hide(animated:) │ │ └── index.html │ ├── index.html │ ├── openurl(_:) │ │ └── index.html │ ├── openwindow(id:) │ │ └── index.html │ ├── perform(animated:action:) │ │ └── index.html │ ├── present(_:animated:) │ │ └── index.html │ ├── stackappend(_:animated:)-2cmea │ │ └── index.html │ ├── stackappend(_:animated:)-663u2 │ │ └── index.html │ ├── stackdroplast(_:animated:) │ │ └── index.html │ ├── stackdroptoroot(animated:) │ │ └── index.html │ ├── stackmap(_:animated:) │ │ └── index.html │ ├── stacksetroot(_:clear:animated:) │ │ └── index.html │ ├── switchnode(_:) │ │ └── index.html │ └── tabsselectitem(id:) │ │ └── index.html │ ├── navigationcommandexecuter │ ├── canexecute(_:)-18bgp │ │ └── index.html │ ├── canexecute(_:)-93s2l │ │ └── index.html │ ├── execute(_:)-746s │ │ └── index.html │ ├── execute(_:)-75m │ │ └── index.html │ └── index.html │ ├── navigationconfig │ ├── index.html │ ├── isdebugprintenabled │ │ └── index.html │ └── shared │ │ └── index.html │ ├── navigationenvironmenttrigger │ └── index.html │ ├── navigationmessage │ └── index.html │ ├── navigationmessagelistener │ └── index.html │ ├── navigationnode() │ └── index.html │ ├── navigationnode │ ├── addmessagelistener(_:) │ │ └── index.html │ ├── basenavigationnodechildren │ │ └── index.html │ ├── body-1cqfc │ │ └── index.html │ ├── body-5me60 │ │ └── index.html │ ├── body-7huua │ │ └── index.html │ ├── body-7ra17 │ │ └── index.html │ ├── body-swift.associatedtype │ │ └── index.html │ ├── canpresentifwouldnt │ │ └── index.html │ ├── children-2nvge │ │ └── index.html │ ├── children-2xddt │ │ └── index.html │ ├── children-4obi5 │ │ └── index.html │ ├── children-6vf9t │ │ └── index.html │ ├── children-9yggz │ │ └── index.html │ ├── childrennodeswhichcanpresent │ │ └── index.html │ ├── commonstate │ │ └── index.html │ ├── finishifneeded()-35h31 │ │ └── index.html │ ├── finishifneeded()-6nfps │ │ └── index.html │ ├── id │ │ └── index.html │ ├── index.html │ ├── iswrappernode-23e7v │ │ └── index.html │ ├── iswrappernode-4cc6p │ │ └── index.html │ ├── nearestchildrennodewhichcanpresent │ │ └── index.html │ ├── nearestnodewhichcanpresent │ │ └── index.html │ ├── nearestnodewhichcanpresentfromparent │ │ └── index.html │ ├── onmessagereceived(_:) │ │ └── index.html │ ├── parent-1pzhz │ │ └── index.html │ ├── parent-8igea │ │ └── index.html │ ├── predecessors │ │ └── index.html │ ├── predecessorsincludingself │ │ └── index.html │ ├── presentednode-7cm1j │ │ └── index.html │ ├── presentednode-9l8f8 │ │ └── index.html │ ├── printdebuggraph() │ │ └── index.html │ ├── printdebugtext(_:) │ │ └── index.html │ ├── root │ │ └── index.html │ ├── sendenvironmenttrigger(_:) │ │ └── index.html │ ├── sendmessage(_:) │ │ └── index.html │ ├── stacked(_:tabbartoolbarbehavior:)-2m5q6 │ │ └── index.html │ ├── stacked(_:tabbartoolbarbehavior:)-4jdjf │ │ └── index.html │ ├── stacked(_:tabbartoolbarbehavior:)-5a9d │ │ └── index.html │ ├── stacked(_:tabbartoolbarbehavior:)-8bugb │ │ └── index.html │ ├── startifneeded(parent:)-1i0lc │ │ └── index.html │ ├── startifneeded(parent:)-r2p2 │ │ └── index.html │ ├── successors │ │ └── index.html │ ├── successorsincludingself │ │ └── index.html │ └── toppresented │ │ └── index.html │ ├── navigationnoderesolvedview │ ├── accentcolor(_:) │ │ └── index.html │ ├── accessibility(activationpoint:)-2cpad │ │ └── index.html │ ├── accessibility(activationpoint:)-44sfc │ │ └── index.html │ ├── accessibility(addtraits:) │ │ └── index.html │ ├── accessibility(hidden:) │ │ └── index.html │ ├── accessibility(hint:) │ │ └── index.html │ ├── accessibility(identifier:) │ │ └── index.html │ ├── accessibility(inputlabels:) │ │ └── index.html │ ├── accessibility(label:) │ │ └── index.html │ ├── accessibility(removetraits:) │ │ └── index.html │ ├── accessibility(selectionidentifier:) │ │ └── index.html │ ├── accessibility(sortpriority:) │ │ └── index.html │ ├── accessibility(value:) │ │ └── index.html │ ├── accessibilityaction(_:_:) │ │ └── index.html │ ├── accessibilityaction(action:label:) │ │ └── index.html │ ├── accessibilityaction(named:_:)-2vued │ │ └── index.html │ ├── accessibilityaction(named:_:)-3j58s │ │ └── index.html │ ├── accessibilityaction(named:_:)-3zm9i │ │ └── index.html │ ├── accessibilityactions(_:) │ │ └── index.html │ ├── accessibilityactions(category:_:) │ │ └── index.html │ ├── accessibilityactivationpoint(_:)-2ma10 │ │ └── index.html │ ├── accessibilityactivationpoint(_:)-5muqg │ │ └── index.html │ ├── accessibilityactivationpoint(_:isenabled:)-1ysmt │ │ └── index.html │ ├── accessibilityactivationpoint(_:isenabled:)-716a8 │ │ └── index.html │ ├── accessibilityaddtraits(_:) │ │ └── index.html │ ├── accessibilityadjustableaction(_:) │ │ └── index.html │ ├── accessibilitychartdescriptor(_:) │ │ └── index.html │ ├── accessibilitychildren(children:) │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-4921d │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-4iz6w │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-4ll9a │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-6eonf │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-6f825 │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-6oe0l │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-7ex3d │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-883ke │ │ └── index.html │ ├── accessibilitydirecttouch(_:options:) │ │ └── index.html │ ├── accessibilitydragpoint(_:description:)-20tx4 │ │ └── index.html │ ├── accessibilitydragpoint(_:description:)-7vmga │ │ └── index.html │ ├── accessibilitydragpoint(_:description:)-x1c7 │ │ └── index.html │ ├── accessibilitydragpoint(_:description:isenabled:)-1em1c │ │ └── index.html │ ├── accessibilitydragpoint(_:description:isenabled:)-5hnqf │ │ └── index.html │ ├── accessibilitydragpoint(_:description:isenabled:)-94rmk │ │ └── index.html │ ├── accessibilitydroppoint(_:description:)-4xd40 │ │ └── index.html │ ├── accessibilitydroppoint(_:description:)-77mc5 │ │ └── index.html │ ├── accessibilitydroppoint(_:description:)-9rwcp │ │ └── index.html │ ├── accessibilitydroppoint(_:description:isenabled:)-1pwcs │ │ └── index.html │ ├── accessibilitydroppoint(_:description:isenabled:)-2cmeu │ │ └── index.html │ ├── accessibilitydroppoint(_:description:isenabled:)-5gqoc │ │ └── index.html │ ├── accessibilityelement(children:) │ │ └── index.html │ ├── accessibilityfocused(_:) │ │ └── index.html │ ├── accessibilityfocused(_:equals:) │ │ └── index.html │ ├── accessibilityheading(_:) │ │ └── index.html │ ├── accessibilityhidden(_:) │ │ └── index.html │ ├── accessibilityhidden(_:isenabled:) │ │ └── index.html │ ├── accessibilityhint(_:)-2xcb9 │ │ └── index.html │ ├── accessibilityhint(_:)-4dnp0 │ │ └── index.html │ ├── accessibilityhint(_:)-8ag7d │ │ └── index.html │ ├── accessibilityhint(_:isenabled:)-3aigf │ │ └── index.html │ ├── accessibilityhint(_:isenabled:)-65ixn │ │ └── index.html │ ├── accessibilityhint(_:isenabled:)-8btak │ │ └── index.html │ ├── accessibilityidentifier(_:) │ │ └── index.html │ ├── accessibilityidentifier(_:isenabled:) │ │ └── index.html │ ├── accessibilityignoresinvertcolors(_:) │ │ └── index.html │ ├── accessibilityinputlabels(_:)-3e038 │ │ └── index.html │ ├── accessibilityinputlabels(_:)-5qdf9 │ │ └── index.html │ ├── accessibilityinputlabels(_:)-yqs │ │ └── index.html │ ├── accessibilityinputlabels(_:isenabled:)-2dxzl │ │ └── index.html │ ├── accessibilityinputlabels(_:isenabled:)-95oew │ │ └── index.html │ ├── accessibilityinputlabels(_:isenabled:)-tvyc │ │ └── index.html │ ├── accessibilitylabel(_:)-1akf │ │ └── index.html │ ├── accessibilitylabel(_:)-42fu3 │ │ └── index.html │ ├── accessibilitylabel(_:)-5q712 │ │ └── index.html │ ├── accessibilitylabel(_:isenabled:)-2gxua │ │ └── index.html │ ├── accessibilitylabel(_:isenabled:)-5t99f │ │ └── index.html │ ├── accessibilitylabel(_:isenabled:)-6zegj │ │ └── index.html │ ├── accessibilitylabel(content:) │ │ └── index.html │ ├── accessibilitylabeledpair(role:id:in:) │ │ └── index.html │ ├── accessibilitylinkedgroup(id:in:) │ │ └── index.html │ ├── accessibilityremovetraits(_:) │ │ └── index.html │ ├── accessibilityrepresentation(representation:) │ │ └── index.html │ ├── accessibilityrespondstouserinteraction(_:) │ │ └── index.html │ ├── accessibilityrespondstouserinteraction(_:isenabled:) │ │ └── index.html │ ├── accessibilityrotor(_:entries:)-1zuyj │ │ └── index.html │ ├── accessibilityrotor(_:entries:)-2imn │ │ └── index.html │ ├── accessibilityrotor(_:entries:)-8b1sh │ │ └── index.html │ ├── accessibilityrotor(_:entries:)-9t5gw │ │ └── index.html │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-1y5cv │ │ └── index.html │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-59bw2 │ │ └── index.html │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-7bws5 │ │ └── index.html │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-9j85t │ │ └── index.html │ ├── accessibilityrotor(_:entries:entrylabel:)-5br60 │ │ └── index.html │ ├── accessibilityrotor(_:entries:entrylabel:)-67drh │ │ └── index.html │ ├── accessibilityrotor(_:entries:entrylabel:)-7k9hx │ │ └── index.html │ ├── accessibilityrotor(_:entries:entrylabel:)-kcl5 │ │ └── index.html │ ├── accessibilityrotor(_:textranges:)-4x9cs │ │ └── index.html │ ├── accessibilityrotor(_:textranges:)-637b5 │ │ └── index.html │ ├── accessibilityrotor(_:textranges:)-69qas │ │ └── index.html │ ├── accessibilityrotor(_:textranges:)-9yin2 │ │ └── index.html │ ├── accessibilityrotorentry(id:in:) │ │ └── index.html │ ├── accessibilityscrollaction(_:) │ │ └── index.html │ ├── accessibilityshowslargecontentviewer() │ │ └── index.html │ ├── accessibilityshowslargecontentviewer(_:) │ │ └── index.html │ ├── accessibilitysortpriority(_:) │ │ └── index.html │ ├── accessibilitytextcontenttype(_:) │ │ └── index.html │ ├── accessibilityvalue(_:)-12rk5 │ │ └── index.html │ ├── accessibilityvalue(_:)-4hgdb │ │ └── index.html │ ├── accessibilityvalue(_:)-55e4q │ │ └── index.html │ ├── accessibilityvalue(_:isenabled:)-2z4nq │ │ └── index.html │ ├── accessibilityvalue(_:isenabled:)-5tkgu │ │ └── index.html │ ├── accessibilityvalue(_:isenabled:)-8zzke │ │ └── index.html │ ├── accessibilityzoomaction(_:) │ │ └── index.html │ ├── actionsheet(ispresented:content:) │ │ └── index.html │ ├── actionsheet(item:content:) │ │ └── index.html │ ├── alert(_:ispresented:actions:)-5cao5 │ │ └── index.html │ ├── alert(_:ispresented:actions:)-94ie4 │ │ └── index.html │ ├── alert(_:ispresented:actions:)-96x8v │ │ └── index.html │ ├── alert(_:ispresented:actions:message:)-2tltt │ │ └── index.html │ ├── alert(_:ispresented:actions:message:)-6dyj2 │ │ └── index.html │ ├── alert(_:ispresented:actions:message:)-jqw2 │ │ └── index.html │ ├── alert(_:ispresented:presenting:actions:)-3xw1v │ │ └── index.html │ ├── alert(_:ispresented:presenting:actions:)-7782u │ │ └── index.html │ ├── alert(_:ispresented:presenting:actions:)-7c4d5 │ │ └── index.html │ ├── alert(_:ispresented:presenting:actions:message:)-37pzc │ │ └── index.html │ ├── alert(_:ispresented:presenting:actions:message:)-39z8x │ │ └── index.html │ ├── alert(_:ispresented:presenting:actions:message:)-g5vm │ │ └── index.html │ ├── alert(ispresented:content:) │ │ └── index.html │ ├── alert(ispresented:error:actions:) │ │ └── index.html │ ├── alert(ispresented:error:actions:message:) │ │ └── index.html │ ├── alert(item:content:) │ │ └── index.html │ ├── alignmentguide(_:computevalue:)-7jv6e │ │ └── index.html │ ├── alignmentguide(_:computevalue:)-d29o │ │ └── index.html │ ├── alloweddynamicrange(_:) │ │ └── index.html │ ├── allowshittesting(_:) │ │ └── index.html │ ├── allowstightening(_:) │ │ └── index.html │ ├── allowswindowactivationevents(_:) │ │ └── index.html │ ├── anchorpreference(key:value:transform:) │ │ └── index.html │ ├── animation(_:) │ │ └── index.html │ ├── animation(_:body:) │ │ └── index.html │ ├── animation(_:value:) │ │ └── index.html │ ├── aspectratio(_:contentmode:)-82hwg │ │ └── index.html │ ├── aspectratio(_:contentmode:)-91su6 │ │ └── index.html │ ├── autocapitalization(_:) │ │ └── index.html │ ├── autocorrectiondisabled(_:) │ │ └── index.html │ ├── background(_:alignment:) │ │ └── index.html │ ├── background(_:ignoressafeareaedges:) │ │ └── index.html │ ├── background(_:in:fillstyle:)-1q3xo │ │ └── index.html │ ├── background(_:in:fillstyle:)-4sk7i │ │ └── index.html │ ├── background(alignment:content:) │ │ └── index.html │ ├── background(ignoressafeareaedges:) │ │ └── index.html │ ├── background(in:fillstyle:)-2u4dx │ │ └── index.html │ ├── background(in:fillstyle:)-n6oy │ │ └── index.html │ ├── backgroundpreferencevalue(_:_:) │ │ └── index.html │ ├── backgroundpreferencevalue(_:alignment:_:) │ │ └── index.html │ ├── backgroundstyle(_:) │ │ └── index.html │ ├── badge(_:)-6ubw8 │ │ └── index.html │ ├── badge(_:)-7du7p │ │ └── index.html │ ├── badge(_:)-7hecr │ │ └── index.html │ ├── badge(_:)-lsoq │ │ └── index.html │ ├── badgeprominence(_:) │ │ └── index.html │ ├── baselineoffset(_:) │ │ └── index.html │ ├── blendmode(_:) │ │ └── index.html │ ├── blur(radius:opaque:) │ │ └── index.html │ ├── body │ │ └── index.html │ ├── bold(_:) │ │ └── index.html │ ├── border(_:width:) │ │ └── index.html │ ├── brightness(_:) │ │ └── index.html │ ├── buttonbordershape(_:) │ │ └── index.html │ ├── buttonrepeatbehavior(_:) │ │ └── index.html │ ├── buttonstyle(_:)-1jyc2 │ │ └── index.html │ ├── buttonstyle(_:)-zsmp │ │ └── index.html │ ├── clipped(antialiased:) │ │ └── index.html │ ├── clipshape(_:style:) │ │ └── index.html │ ├── coloreffect(_:isenabled:) │ │ └── index.html │ ├── colorinvert() │ │ └── index.html │ ├── colormultiply(_:) │ │ └── index.html │ ├── colorscheme(_:) │ │ └── index.html │ ├── compositinggroup() │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-5gunj │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-6cjpc │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-7m31k │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-3sab8 │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-5shc1 │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-73r00 │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-5gt1s │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-7exkx │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-9k4u3 │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-3i9uf │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-4hp6m │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-77b8v │ │ └── index.html │ ├── containerbackground(_:for:) │ │ └── index.html │ ├── containerbackground(for:alignment:content:) │ │ └── index.html │ ├── containerrelativeframe(_:alignment:) │ │ └── index.html │ ├── containerrelativeframe(_:alignment:_:) │ │ └── index.html │ ├── containerrelativeframe(_:count:span:spacing:alignment:) │ │ └── index.html │ ├── containershape(_:) │ │ └── index.html │ ├── containervalue(_:_:) │ │ └── index.html │ ├── contentmargins(_:_:for:)-3gto8 │ │ └── index.html │ ├── contentmargins(_:_:for:)-87ht6 │ │ └── index.html │ ├── contentmargins(_:for:) │ │ └── index.html │ ├── contentshape(_:_:eofill:) │ │ └── index.html │ ├── contentshape(_:eofill:) │ │ └── index.html │ ├── contenttransition(_:) │ │ └── index.html │ ├── contextmenu(_:) │ │ └── index.html │ ├── contextmenu(forselectiontype:menu:primaryaction:) │ │ └── index.html │ ├── contextmenu(menuitems:) │ │ └── index.html │ ├── contextmenu(menuitems:preview:) │ │ └── index.html │ ├── contrast(_:) │ │ └── index.html │ ├── controlgroupstyle(_:) │ │ └── index.html │ ├── controlsize(_:) │ │ └── index.html │ ├── coordinatespace(_:) │ │ └── index.html │ ├── coordinatespace(name:) │ │ └── index.html │ ├── cornerradius(_:antialiased:) │ │ └── index.html │ ├── datepickerstyle(_:) │ │ └── index.html │ ├── defaultadaptabletabbarplacement(_:) │ │ └── index.html │ ├── defaultappstorage(_:) │ │ └── index.html │ ├── defaultfocus(_:_:priority:) │ │ └── index.html │ ├── defaulthovereffect(_:)-12j87 │ │ └── index.html │ ├── defaulthovereffect(_:)-48n3h │ │ └── index.html │ ├── defaultscrollanchor(_:) │ │ └── index.html │ ├── defaultscrollanchor(_:for:) │ │ └── index.html │ ├── deferssystemgestures(on:) │ │ └── index.html │ ├── deletedisabled(_:) │ │ └── index.html │ ├── dialogicon(_:) │ │ └── index.html │ ├── dialogsuppressiontoggle(_:issuppressed:)-1b8wi │ │ └── index.html │ ├── dialogsuppressiontoggle(_:issuppressed:)-43yk3 │ │ └── index.html │ ├── dialogsuppressiontoggle(_:issuppressed:)-659p4 │ │ └── index.html │ ├── dialogsuppressiontoggle(issuppressed:) │ │ └── index.html │ ├── disableautocorrection(_:) │ │ └── index.html │ ├── disabled(_:) │ │ └── index.html │ ├── disclosuregroupstyle(_:) │ │ └── index.html │ ├── distortioneffect(_:maxsampleoffset:isenabled:) │ │ └── index.html │ ├── documentbrowsercontextmenu(_:) │ │ └── index.html │ ├── draggable(_:) │ │ └── index.html │ ├── draggable(_:preview:) │ │ └── index.html │ ├── drawinggroup(opaque:colormode:) │ │ └── index.html │ ├── dropdestination(for:action:istargeted:) │ │ └── index.html │ ├── dynamictypesize(_:) │ │ └── index.html │ ├── edgesignoringsafearea(_:) │ │ └── index.html │ ├── environment(_:) │ │ └── index.html │ ├── environment(_:_:) │ │ └── index.html │ ├── environmentobject(_:) │ │ └── index.html │ ├── filedialogbrowseroptions(_:) │ │ └── index.html │ ├── filedialogconfirmationlabel(_:)-3yuzg │ │ └── index.html │ ├── filedialogconfirmationlabel(_:)-5zboc │ │ └── index.html │ ├── filedialogconfirmationlabel(_:)-9cq8t │ │ └── index.html │ ├── filedialogcustomizationid(_:) │ │ └── index.html │ ├── filedialogdefaultdirectory(_:) │ │ └── index.html │ ├── filedialogimportsunresolvedaliases(_:) │ │ └── index.html │ ├── filedialogmessage(_:)-30uuv │ │ └── index.html │ ├── filedialogmessage(_:)-3zexu │ │ └── index.html │ ├── filedialogmessage(_:)-7p2uc │ │ └── index.html │ ├── filedialogurlenabled(_:) │ │ └── index.html │ ├── fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-9iwzf │ │ └── index.html │ ├── fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-taj5 │ │ └── index.html │ ├── fileexporter(ispresented:document:contenttypes:defaultfilename:oncompletion:oncancellation:)-5wcxy │ │ └── index.html │ ├── fileexporter(ispresented:document:contenttypes:defaultfilename:oncompletion:oncancellation:)-624sk │ │ └── index.html │ ├── fileexporter(ispresented:documents:contenttype:oncompletion:)-11sz4 │ │ └── index.html │ ├── fileexporter(ispresented:documents:contenttype:oncompletion:)-p3n0 │ │ └── index.html │ ├── fileexporter(ispresented:documents:contenttypes:oncompletion:oncancellation:)-4wire │ │ └── index.html │ ├── fileexporter(ispresented:documents:contenttypes:oncompletion:oncancellation:)-81z55 │ │ └── index.html │ ├── fileexporter(ispresented:item:contenttypes:defaultfilename:oncompletion:oncancellation:) │ │ └── index.html │ ├── fileexporter(ispresented:items:contenttypes:oncompletion:oncancellation:) │ │ └── index.html │ ├── fileexporterfilenamelabel(_:)-92ewg │ │ └── index.html │ ├── fileexporterfilenamelabel(_:)-9uabk │ │ └── index.html │ ├── fileexporterfilenamelabel(_:)-duqm │ │ └── index.html │ ├── fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:) │ │ └── index.html │ ├── fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:oncancellation:) │ │ └── index.html │ ├── fileimporter(ispresented:allowedcontenttypes:oncompletion:) │ │ └── index.html │ ├── filemover(ispresented:file:oncompletion:) │ │ └── index.html │ ├── filemover(ispresented:file:oncompletion:oncancellation:) │ │ └── index.html │ ├── filemover(ispresented:files:oncompletion:) │ │ └── index.html │ ├── filemover(ispresented:files:oncompletion:oncancellation:) │ │ └── index.html │ ├── finddisabled(_:) │ │ └── index.html │ ├── findnavigator(ispresented:) │ │ └── index.html │ ├── fixedsize() │ │ └── index.html │ ├── fixedsize(horizontal:vertical:) │ │ └── index.html │ ├── flipsforrighttoleftlayoutdirection(_:) │ │ └── index.html │ ├── focusable(_:) │ │ └── index.html │ ├── focusable(_:interactions:) │ │ └── index.html │ ├── focused(_:) │ │ └── index.html │ ├── focused(_:equals:) │ │ └── index.html │ ├── focusedobject(_:)-2noyt │ │ └── index.html │ ├── focusedobject(_:)-84lwu │ │ └── index.html │ ├── focusedsceneobject(_:)-3e883 │ │ └── index.html │ ├── focusedsceneobject(_:)-7xguk │ │ └── index.html │ ├── focusedscenevalue(_:) │ │ └── index.html │ ├── focusedscenevalue(_:_:)-3ifjw │ │ └── index.html │ ├── focusedscenevalue(_:_:)-8rp07 │ │ └── index.html │ ├── focusedvalue(_:) │ │ └── index.html │ ├── focusedvalue(_:_:)-1ti3z │ │ └── index.html │ ├── focusedvalue(_:_:)-2f74z │ │ └── index.html │ ├── focuseffectdisabled(_:) │ │ └── index.html │ ├── font(_:) │ │ └── index.html │ ├── fontdesign(_:) │ │ └── index.html │ ├── fontweight(_:) │ │ └── index.html │ ├── fontwidth(_:) │ │ └── index.html │ ├── foregroundcolor(_:) │ │ └── index.html │ ├── foregroundstyle(_:) │ │ └── index.html │ ├── foregroundstyle(_:_:) │ │ └── index.html │ ├── foregroundstyle(_:_:_:) │ │ └── index.html │ ├── formstyle(_:) │ │ └── index.html │ ├── frame() │ │ └── index.html │ ├── frame(minwidth:idealwidth:maxwidth:minheight:idealheight:maxheight:alignment:) │ │ └── index.html │ ├── frame(width:height:alignment:) │ │ └── index.html │ ├── fullscreencover(ispresented:ondismiss:content:) │ │ └── index.html │ ├── fullscreencover(item:ondismiss:content:) │ │ └── index.html │ ├── gaugestyle(_:) │ │ └── index.html │ ├── geometrygroup() │ │ └── index.html │ ├── gesture(_:) │ │ └── index.html │ ├── gesture(_:including:) │ │ └── index.html │ ├── gesture(_:isenabled:) │ │ └── index.html │ ├── gesture(_:name:isenabled:) │ │ └── index.html │ ├── grayscale(_:) │ │ └── index.html │ ├── gridcellanchor(_:) │ │ └── index.html │ ├── gridcellcolumns(_:) │ │ └── index.html │ ├── gridcellunsizedaxes(_:) │ │ └── index.html │ ├── gridcolumnalignment(_:) │ │ └── index.html │ ├── groupboxstyle(_:) │ │ └── index.html │ ├── handgestureshortcut(_:isenabled:) │ │ └── index.html │ ├── handlesexternalevents(preferring:allowing:) │ │ └── index.html │ ├── handlingstacktabbartoolbarbehavior(inputnavigationnodetype:) │ │ └── index.html │ ├── headerprominence(_:) │ │ └── index.html │ ├── help(_:)-19zxv │ │ └── index.html │ ├── help(_:)-4zblh │ │ └── index.html │ ├── help(_:)-7ts4j │ │ └── index.html │ ├── hidden() │ │ └── index.html │ ├── highprioritygesture(_:including:) │ │ └── index.html │ ├── highprioritygesture(_:isenabled:) │ │ └── index.html │ ├── highprioritygesture(_:name:isenabled:) │ │ └── index.html │ ├── hovereffect(_:) │ │ └── index.html │ ├── hovereffect(_:isenabled:)-3itb7 │ │ └── index.html │ ├── hovereffect(_:isenabled:)-7qpmz │ │ └── index.html │ ├── hovereffectdisabled(_:) │ │ └── index.html │ ├── huerotation(_:) │ │ └── index.html │ ├── id(_:) │ │ └── index.html │ ├── ignoressafearea(_:edges:) │ │ └── index.html │ ├── imagescale(_:) │ │ └── index.html │ ├── index.html │ ├── indexviewstyle(_:) │ │ └── index.html │ ├── init(node:) │ │ └── index.html │ ├── inspector(ispresented:content:) │ │ └── index.html │ ├── inspectorcolumnwidth(_:) │ │ └── index.html │ ├── inspectorcolumnwidth(min:ideal:max:) │ │ └── index.html │ ├── interactionactivitytrackingtag(_:) │ │ └── index.html │ ├── interactivedismissdisabled(_:) │ │ └── index.html │ ├── invalidatablecontent(_:) │ │ └── index.html │ ├── italic(_:) │ │ └── index.html │ ├── itemprovider(_:) │ │ └── index.html │ ├── kerning(_:) │ │ └── index.html │ ├── keyboardshortcut(_:)-363rd │ │ └── index.html │ ├── keyboardshortcut(_:)-cx1i │ │ └── index.html │ ├── keyboardshortcut(_:modifiers:) │ │ └── index.html │ ├── keyboardshortcut(_:modifiers:localization:) │ │ └── index.html │ ├── keyboardtype(_:) │ │ └── index.html │ ├── keyframeanimator(initialvalue:repeating:content:keyframes:) │ │ └── index.html │ ├── keyframeanimator(initialvalue:trigger:content:keyframes:) │ │ └── index.html │ ├── labeledcontentstyle(_:) │ │ └── index.html │ ├── labelshidden() │ │ └── index.html │ ├── labelstyle(_:) │ │ └── index.html │ ├── labelsvisibility(_:) │ │ └── index.html │ ├── layereffect(_:maxsampleoffset:isenabled:) │ │ └── index.html │ ├── layoutdirectionbehavior(_:) │ │ └── index.html │ ├── layoutpriority(_:) │ │ └── index.html │ ├── layoutvalue(key:value:) │ │ └── index.html │ ├── linelimit(_:)-4599z │ │ └── index.html │ ├── linelimit(_:)-4z9gv │ │ └── index.html │ ├── linelimit(_:)-62dw2 │ │ └── index.html │ ├── linelimit(_:)-8gvi3 │ │ └── index.html │ ├── linelimit(_:reservesspace:) │ │ └── index.html │ ├── linespacing(_:) │ │ └── index.html │ ├── listitemtint(_:)-2dvjc │ │ └── index.html │ ├── listitemtint(_:)-5dr0u │ │ └── index.html │ ├── listrowbackground(_:) │ │ └── index.html │ ├── listrowinsets(_:) │ │ └── index.html │ ├── listrowseparator(_:edges:) │ │ └── index.html │ ├── listrowseparatortint(_:edges:) │ │ └── index.html │ ├── listrowspacing(_:) │ │ └── index.html │ ├── listsectionseparator(_:edges:) │ │ └── index.html │ ├── listsectionseparatortint(_:edges:) │ │ └── index.html │ ├── listsectionspacing(_:)-2wb1 │ │ └── index.html │ ├── listsectionspacing(_:)-2y431 │ │ └── index.html │ ├── liststyle(_:) │ │ └── index.html │ ├── luminancetoalpha() │ │ └── index.html │ ├── mask(_:) │ │ └── index.html │ ├── mask(alignment:_:) │ │ └── index.html │ ├── matchedgeometryeffect(id:in:properties:anchor:issource:) │ │ └── index.html │ ├── matchedtransitionsource(id:in:) │ │ └── index.html │ ├── matchedtransitionsource(id:in:configuration:) │ │ └── index.html │ ├── materialactiveappearance(_:) │ │ └── index.html │ ├── menuactiondismissbehavior(_:) │ │ └── index.html │ ├── menuindicator(_:) │ │ └── index.html │ ├── menuorder(_:) │ │ └── index.html │ ├── menustyle(_:) │ │ └── index.html │ ├── minimumscalefactor(_:) │ │ └── index.html │ ├── modifier(_:) │ │ └── index.html │ ├── monospaced(_:) │ │ └── index.html │ ├── monospaceddigit() │ │ └── index.html │ ├── movedisabled(_:) │ │ └── index.html │ ├── multilinetextalignment(_:) │ │ └── index.html │ ├── navigationbarbackbuttonhidden(_:) │ │ └── index.html │ ├── navigationbarhidden(_:) │ │ └── index.html │ ├── navigationbaritems(leading:) │ │ └── index.html │ ├── navigationbaritems(leading:trailing:) │ │ └── index.html │ ├── navigationbaritems(trailing:) │ │ └── index.html │ ├── navigationbartitle(_:)-19vck │ │ └── index.html │ ├── navigationbartitle(_:)-1komk │ │ └── index.html │ ├── navigationbartitle(_:)-8c35l │ │ └── index.html │ ├── navigationbartitle(_:displaymode:)-3euxo │ │ └── index.html │ ├── navigationbartitle(_:displaymode:)-7xrrp │ │ └── index.html │ ├── navigationbartitle(_:displaymode:)-8zlgl │ │ └── index.html │ ├── navigationbartitledisplaymode(_:) │ │ └── index.html │ ├── navigationdestination(for:destination:) │ │ └── index.html │ ├── navigationdestination(ispresented:destination:) │ │ └── index.html │ ├── navigationdestination(item:destination:) │ │ └── index.html │ ├── navigationdocument(_:) │ │ └── index.html │ ├── navigationdocument(_:preview:)-3drf2 │ │ └── index.html │ ├── navigationdocument(_:preview:)-6y4ne │ │ └── index.html │ ├── navigationdocument(_:preview:)-73qe2 │ │ └── index.html │ ├── navigationdocument(_:preview:)-o47s │ │ └── index.html │ ├── navigationenvironmenttriggerhandler(_:) │ │ └── index.html │ ├── navigationsplitviewcolumnwidth(_:) │ │ └── index.html │ ├── navigationsplitviewcolumnwidth(min:ideal:max:) │ │ └── index.html │ ├── navigationsplitviewstyle(_:) │ │ └── index.html │ ├── navigationtitle(_:)-56toq │ │ └── index.html │ ├── navigationtitle(_:)-6smds │ │ └── index.html │ ├── navigationtitle(_:)-7hig1 │ │ └── index.html │ ├── navigationtitle(_:)-9i1ey │ │ └── index.html │ ├── navigationtitle(_:)-9sugy │ │ └── index.html │ ├── navigationtransition(_:) │ │ └── index.html │ ├── navigationviewstyle(_:) │ │ └── index.html │ ├── offset(_:) │ │ └── index.html │ ├── offset(x:y:) │ │ └── index.html │ ├── onappear(perform:) │ │ └── index.html │ ├── onchange(of:initial:_:)-371if │ │ └── index.html │ ├── onchange(of:initial:_:)-8o5al │ │ └── index.html │ ├── onchange(of:perform:) │ │ └── index.html │ ├── oncontinueuseractivity(_:perform:) │ │ └── index.html │ ├── oncontinuoushover(coordinatespace:perform:) │ │ └── index.html │ ├── ondisappear(perform:) │ │ └── index.html │ ├── ondrag(_:) │ │ └── index.html │ ├── ondrag(_:preview:) │ │ └── index.html │ ├── ondrop(of:delegate:)-8bc0s │ │ └── index.html │ ├── ondrop(of:delegate:)-8xujv │ │ └── index.html │ ├── ondrop(of:istargeted:perform:)-7cs21 │ │ └── index.html │ ├── ondrop(of:istargeted:perform:)-8yxuc │ │ └── index.html │ ├── ondrop(of:istargeted:perform:)-92z4b │ │ └── index.html │ ├── ondrop(of:istargeted:perform:)-985rs │ │ └── index.html │ ├── ongeometrychange(for:of:action:)-5biuf │ │ └── index.html │ ├── ongeometrychange(for:of:action:)-6vl0k │ │ └── index.html │ ├── onhover(perform:) │ │ └── index.html │ ├── onkeypress(_:action:) │ │ └── index.html │ ├── onkeypress(_:phases:action:) │ │ └── index.html │ ├── onkeypress(characters:phases:action:) │ │ └── index.html │ ├── onkeypress(keys:phases:action:) │ │ └── index.html │ ├── onkeypress(phases:action:) │ │ └── index.html │ ├── onlongpressgesture(minimumduration:maximumdistance:perform:onpressingchanged:) │ │ └── index.html │ ├── onlongpressgesture(minimumduration:maximumdistance:pressing:perform:) │ │ └── index.html │ ├── onlongpressgesture(minimumduration:perform:onpressingchanged:) │ │ └── index.html │ ├── onlongpressgesture(minimumduration:pressing:perform:) │ │ └── index.html │ ├── onopenurl(perform:) │ │ └── index.html │ ├── onpencildoubletap(perform:) │ │ └── index.html │ ├── onpencilsqueeze(perform:) │ │ └── index.html │ ├── onpreferencechange(_:perform:) │ │ └── index.html │ ├── onreceive(_:perform:) │ │ └── index.html │ ├── onscrollgeometrychange(for:of:action:) │ │ └── index.html │ ├── onscrollphasechange(_:)-4fxn1 │ │ └── index.html │ ├── onscrollphasechange(_:)-77swf │ │ └── index.html │ ├── onscrolltargetvisibilitychange(idtype:threshold:_:) │ │ └── index.html │ ├── onscrollvisibilitychange(threshold:_:) │ │ └── index.html │ ├── onsubmit(of:_:) │ │ └── index.html │ ├── ontapgesture(count:coordinatespace:perform:) │ │ └── index.html │ ├── ontapgesture(count:perform:) │ │ └── index.html │ ├── opacity(_:) │ │ └── index.html │ ├── overlay(_:alignment:) │ │ └── index.html │ ├── overlay(_:ignoressafeareaedges:) │ │ └── index.html │ ├── overlay(_:in:fillstyle:) │ │ └── index.html │ ├── overlay(alignment:content:) │ │ └── index.html │ ├── overlaypreferencevalue(_:_:) │ │ └── index.html │ ├── overlaypreferencevalue(_:alignment:_:) │ │ └── index.html │ ├── padding(_:)-6y3ez │ │ └── index.html │ ├── padding(_:)-9j81u │ │ └── index.html │ ├── padding(_:_:) │ │ └── index.html │ ├── paletteselectioneffect(_:) │ │ └── index.html │ ├── persistentsystemoverlays(_:) │ │ └── index.html │ ├── phaseanimator(_:content:animation:) │ │ └── index.html │ ├── phaseanimator(_:trigger:content:animation:) │ │ └── index.html │ ├── pickerstyle(_:) │ │ └── index.html │ ├── popover(ispresented:attachmentanchor:arrowedge:content:) │ │ └── index.html │ ├── popover(item:attachmentanchor:arrowedge:content:) │ │ └── index.html │ ├── position(_:) │ │ └── index.html │ ├── position(x:y:) │ │ └── index.html │ ├── preference(key:value:) │ │ └── index.html │ ├── preferredcolorscheme(_:) │ │ └── index.html │ ├── presentationbackground(_:) │ │ └── index.html │ ├── presentationbackground(alignment:content:) │ │ └── index.html │ ├── presentationbackgroundinteraction(_:) │ │ └── index.html │ ├── presentationcompactadaptation(_:) │ │ └── index.html │ ├── presentationcompactadaptation(horizontal:vertical:) │ │ └── index.html │ ├── presentationcontentinteraction(_:) │ │ └── index.html │ ├── presentationcornerradius(_:) │ │ └── index.html │ ├── presentationdetents(_:) │ │ └── index.html │ ├── presentationdetents(_:selection:) │ │ └── index.html │ ├── presentationdragindicator(_:) │ │ └── index.html │ ├── presentationsizing(_:) │ │ └── index.html │ ├── presentingnavigationsource(id:) │ │ └── index.html │ ├── previewcontext(_:) │ │ └── index.html │ ├── previewdevice(_:) │ │ └── index.html │ ├── previewdisplayname(_:) │ │ └── index.html │ ├── previewinterfaceorientation(_:) │ │ └── index.html │ ├── previewlayout(_:) │ │ └── index.html │ ├── privacysensitive(_:) │ │ └── index.html │ ├── progressviewstyle(_:) │ │ └── index.html │ ├── projectioneffect(_:) │ │ └── index.html │ ├── redacted(reason:) │ │ └── index.html │ ├── refreshable(action:) │ │ └── index.html │ ├── registercustompresentablenavigationnodes(_:) │ │ └── index.html │ ├── renameaction(_:)-11jdw │ │ └── index.html │ ├── renameaction(_:)-2tqbh │ │ └── index.html │ ├── replacedisabled(_:) │ │ └── index.html │ ├── rotation3deffect(_:axis:anchor:anchorz:perspective:) │ │ └── index.html │ ├── rotationeffect(_:anchor:) │ │ └── index.html │ ├── safeareainset(edge:alignment:spacing:content:)-2u0ho │ │ └── index.html │ ├── safeareainset(edge:alignment:spacing:content:)-7fvc2 │ │ └── index.html │ ├── safeareapadding(_:)-8y1p1 │ │ └── index.html │ ├── safeareapadding(_:)-ylgx │ │ └── index.html │ ├── safeareapadding(_:_:) │ │ └── index.html │ ├── saturation(_:) │ │ └── index.html │ ├── scaledtofill() │ │ └── index.html │ ├── scaledtofit() │ │ └── index.html │ ├── scaleeffect(_:anchor:)-4xoq2 │ │ └── index.html │ ├── scaleeffect(_:anchor:)-af7v │ │ └── index.html │ ├── scaleeffect(x:y:anchor:) │ │ └── index.html │ ├── scenepadding(_:) │ │ └── index.html │ ├── scenepadding(_:edges:) │ │ └── index.html │ ├── scrollbouncebehavior(_:axes:) │ │ └── index.html │ ├── scrollclipdisabled(_:) │ │ └── index.html │ ├── scrollcontentbackground(_:) │ │ └── index.html │ ├── scrolldisabled(_:) │ │ └── index.html │ ├── scrolldismisseskeyboard(_:) │ │ └── index.html │ ├── scrollindicators(_:axes:) │ │ └── index.html │ ├── scrollindicatorsflash(onappear:) │ │ └── index.html │ ├── scrollindicatorsflash(trigger:) │ │ └── index.html │ ├── scrollinputbehavior(_:for:) │ │ └── index.html │ ├── scrollposition(_:anchor:) │ │ └── index.html │ ├── scrollposition(id:anchor:) │ │ └── index.html │ ├── scrolltargetbehavior(_:) │ │ └── index.html │ ├── scrolltargetlayout(isenabled:) │ │ └── index.html │ ├── scrolltransition(_:axis:transition:) │ │ └── index.html │ ├── scrolltransition(topleading:bottomtrailing:axis:transition:) │ │ └── index.html │ ├── searchable(text:editabletokens:ispresented:placement:prompt:token:)-1u39c │ │ └── index.html │ ├── searchable(text:editabletokens:ispresented:placement:prompt:token:)-4brij │ │ └── index.html │ ├── searchable(text:editabletokens:ispresented:placement:prompt:token:)-5ma11 │ │ └── index.html │ ├── searchable(text:editabletokens:placement:prompt:token:)-47nsv │ │ └── index.html │ ├── searchable(text:editabletokens:placement:prompt:token:)-5w6u │ │ └── index.html │ ├── searchable(text:editabletokens:placement:prompt:token:)-8u9dx │ │ └── index.html │ ├── searchable(text:ispresented:placement:prompt:)-3377n │ │ └── index.html │ ├── searchable(text:ispresented:placement:prompt:)-76shy │ │ └── index.html │ ├── searchable(text:ispresented:placement:prompt:)-999x1 │ │ └── index.html │ ├── searchable(text:placement:prompt:)-12zgf │ │ └── index.html │ ├── searchable(text:placement:prompt:)-48su0 │ │ └── index.html │ ├── searchable(text:placement:prompt:)-8ik62 │ │ └── index.html │ ├── searchable(text:placement:prompt:suggestions:)-67xea │ │ └── index.html │ ├── searchable(text:placement:prompt:suggestions:)-96xw9 │ │ └── index.html │ ├── searchable(text:placement:prompt:suggestions:)-vxvv │ │ └── index.html │ ├── searchable(text:tokens:ispresented:placement:prompt:token:)-7eyrx │ │ └── index.html │ ├── searchable(text:tokens:ispresented:placement:prompt:token:)-8s4tk │ │ └── index.html │ ├── searchable(text:tokens:ispresented:placement:prompt:token:)-9iylv │ │ └── index.html │ ├── searchable(text:tokens:placement:prompt:token:)-7jp7h │ │ └── index.html │ ├── searchable(text:tokens:placement:prompt:token:)-7kur5 │ │ └── index.html │ ├── searchable(text:tokens:placement:prompt:token:)-9ouaw │ │ └── index.html │ ├── searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-1ubfq │ │ └── index.html │ ├── searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-40pa6 │ │ └── index.html │ ├── searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-7vbqm │ │ └── index.html │ ├── searchable(text:tokens:suggestedtokens:placement:prompt:token:)-1a65g │ │ └── index.html │ ├── searchable(text:tokens:suggestedtokens:placement:prompt:token:)-37pcw │ │ └── index.html │ ├── searchable(text:tokens:suggestedtokens:placement:prompt:token:)-ta4v │ │ └── index.html │ ├── searchcompletion(_:) │ │ └── index.html │ ├── searchdictationbehavior(_:) │ │ └── index.html │ ├── searchfocused(_:) │ │ └── index.html │ ├── searchfocused(_:equals:) │ │ └── index.html │ ├── searchpresentationtoolbarbehavior(_:) │ │ └── index.html │ ├── searchscopes(_:activation:_:) │ │ └── index.html │ ├── searchscopes(_:scopes:) │ │ └── index.html │ ├── searchsuggestions(_:) │ │ └── index.html │ ├── searchsuggestions(_:for:) │ │ └── index.html │ ├── sectionactions(content:) │ │ └── index.html │ ├── selectiondisabled(_:) │ │ └── index.html │ ├── sensoryfeedback(_:trigger:) │ │ └── index.html │ ├── sensoryfeedback(_:trigger:condition:) │ │ └── index.html │ ├── sensoryfeedback(trigger:_:) │ │ └── index.html │ ├── shadow(color:radius:x:y:) │ │ └── index.html │ ├── sheet(ispresented:ondismiss:content:) │ │ └── index.html │ ├── sheet(item:ondismiss:content:) │ │ └── index.html │ ├── simultaneousgesture(_:including:) │ │ └── index.html │ ├── simultaneousgesture(_:isenabled:) │ │ └── index.html │ ├── simultaneousgesture(_:name:isenabled:) │ │ └── index.html │ ├── speechadjustedpitch(_:) │ │ └── index.html │ ├── speechalwaysincludespunctuation(_:) │ │ └── index.html │ ├── speechannouncementsqueued(_:) │ │ └── index.html │ ├── speechspellsoutcharacters(_:) │ │ └── index.html │ ├── springloadingbehavior(_:) │ │ └── index.html │ ├── statusbar(hidden:) │ │ └── index.html │ ├── statusbarhidden(_:) │ │ └── index.html │ ├── strikethrough(_:pattern:color:) │ │ └── index.html │ ├── submitlabel(_:) │ │ └── index.html │ ├── submitscope(_:) │ │ └── index.html │ ├── swipeactions(edge:allowsfullswipe:content:) │ │ └── index.html │ ├── symboleffect(_:options:isactive:) │ │ └── index.html │ ├── symboleffect(_:options:value:) │ │ └── index.html │ ├── symboleffectsremoved(_:) │ │ └── index.html │ ├── symbolrenderingmode(_:) │ │ └── index.html │ ├── symbolvariant(_:) │ │ └── index.html │ ├── tabitem(_:) │ │ └── index.html │ ├── tablecolumnheaders(_:) │ │ └── index.html │ ├── tablestyle(_:) │ │ └── index.html │ ├── tabviewcustomization(_:) │ │ └── index.html │ ├── tabviewsidebarbottombar(content:) │ │ └── index.html │ ├── tabviewsidebarfooter(content:) │ │ └── index.html │ ├── tabviewsidebarheader(content:) │ │ └── index.html │ ├── tabviewstyle(_:) │ │ └── index.html │ ├── tag(_:includeoptional:) │ │ └── index.html │ ├── task(id:priority:_:) │ │ └── index.html │ ├── task(priority:_:) │ │ └── index.html │ ├── textcase(_:) │ │ └── index.html │ ├── textcontenttype(_:) │ │ └── index.html │ ├── texteditorstyle(_:) │ │ └── index.html │ ├── textfieldstyle(_:) │ │ └── index.html │ ├── textinputautocapitalization(_:) │ │ └── index.html │ ├── textrenderer(_:) │ │ └── index.html │ ├── textscale(_:isenabled:) │ │ └── index.html │ ├── textselection(_:) │ │ └── index.html │ ├── textselectionaffinity(_:) │ │ └── index.html │ ├── tint(_:) │ │ └── index.html │ ├── togglestyle(_:) │ │ └── index.html │ ├── toolbar(_:for:) │ │ └── index.html │ ├── toolbar(content:)-597wn │ │ └── index.html │ ├── toolbar(content:)-5hum7 │ │ └── index.html │ ├── toolbar(id:content:) │ │ └── index.html │ ├── toolbar(removing:) │ │ └── index.html │ ├── toolbarbackground(_:for:) │ │ └── index.html │ ├── toolbarbackgroundvisibility(_:for:) │ │ └── index.html │ ├── toolbarcolorscheme(_:for:) │ │ └── index.html │ ├── toolbarforegroundstyle(_:for:) │ │ └── index.html │ ├── toolbarrole(_:) │ │ └── index.html │ ├── toolbartitledisplaymode(_:) │ │ └── index.html │ ├── toolbartitlemenu(content:) │ │ └── index.html │ ├── toolbarvisibility(_:for:) │ │ └── index.html │ ├── tracking(_:) │ │ └── index.html │ ├── transaction(_:) │ │ └── index.html │ ├── transaction(_:body:) │ │ └── index.html │ ├── transaction(value:_:) │ │ └── index.html │ ├── transformanchorpreference(key:value:transform:) │ │ └── index.html │ ├── transformeffect(_:) │ │ └── index.html │ ├── transformenvironment(_:transform:) │ │ └── index.html │ ├── transformpreference(_:_:) │ │ └── index.html │ ├── transition(_:) │ │ └── index.html │ ├── truncationmode(_:) │ │ └── index.html │ ├── typeselectequivalent(_:)-27m3x │ │ └── index.html │ ├── typeselectequivalent(_:)-5zhr5 │ │ └── index.html │ ├── typeselectequivalent(_:)-7mlv3 │ │ └── index.html │ ├── typesettinglanguage(_:isenabled:)-63bme │ │ └── index.html │ ├── typesettinglanguage(_:isenabled:)-8dflo │ │ └── index.html │ ├── underline(_:pattern:color:) │ │ └── index.html │ ├── unredacted() │ │ └── index.html │ ├── useractivity(_:element:_:) │ │ └── index.html │ ├── useractivity(_:isactive:_:) │ │ └── index.html │ ├── view-implementations │ │ └── index.html │ ├── visualeffect(_:) │ │ └── index.html │ ├── windowtoolbarfullscreenvisibility(_:) │ │ └── index.html │ ├── writingtoolsbehavior(_:) │ │ └── index.html │ └── zindex(_:) │ │ └── index.html │ ├── navigationwindow │ ├── accentcolor(_:) │ │ └── index.html │ ├── accessibility(activationpoint:)-1g3gh │ │ └── index.html │ ├── accessibility(activationpoint:)-3ggf5 │ │ └── index.html │ ├── accessibility(addtraits:) │ │ └── index.html │ ├── accessibility(hidden:) │ │ └── index.html │ ├── accessibility(hint:) │ │ └── index.html │ ├── accessibility(identifier:) │ │ └── index.html │ ├── accessibility(inputlabels:) │ │ └── index.html │ ├── accessibility(label:) │ │ └── index.html │ ├── accessibility(removetraits:) │ │ └── index.html │ ├── accessibility(selectionidentifier:) │ │ └── index.html │ ├── accessibility(sortpriority:) │ │ └── index.html │ ├── accessibility(value:) │ │ └── index.html │ ├── accessibilityaction(_:_:) │ │ └── index.html │ ├── accessibilityaction(action:label:) │ │ └── index.html │ ├── accessibilityaction(named:_:)-1uni4 │ │ └── index.html │ ├── accessibilityaction(named:_:)-4h3dh │ │ └── index.html │ ├── accessibilityaction(named:_:)-p51z │ │ └── index.html │ ├── accessibilityactions(_:) │ │ └── index.html │ ├── accessibilityactions(category:_:) │ │ └── index.html │ ├── accessibilityactivationpoint(_:)-9189b │ │ └── index.html │ ├── accessibilityactivationpoint(_:)-9biv0 │ │ └── index.html │ ├── accessibilityactivationpoint(_:isenabled:)-66j62 │ │ └── index.html │ ├── accessibilityactivationpoint(_:isenabled:)-7okfw │ │ └── index.html │ ├── accessibilityaddtraits(_:) │ │ └── index.html │ ├── accessibilityadjustableaction(_:) │ │ └── index.html │ ├── accessibilitychartdescriptor(_:) │ │ └── index.html │ ├── accessibilitychildren(children:) │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-1b6gp │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-1osgl │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-2x8l2 │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-3ade0 │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-4mmcr │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-7lhik │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-7zfce │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-9vnb2 │ │ └── index.html │ ├── accessibilitydirecttouch(_:options:) │ │ └── index.html │ ├── accessibilitydragpoint(_:description:)-10qd8 │ │ └── index.html │ ├── accessibilitydragpoint(_:description:)-1eaub │ │ └── index.html │ ├── accessibilitydragpoint(_:description:)-93i93 │ │ └── index.html │ ├── accessibilitydragpoint(_:description:isenabled:)-1t8a2 │ │ └── index.html │ ├── accessibilitydragpoint(_:description:isenabled:)-639pc │ │ └── index.html │ ├── accessibilitydragpoint(_:description:isenabled:)-924gq │ │ └── index.html │ ├── accessibilitydroppoint(_:description:)-438k8 │ │ └── index.html │ ├── accessibilitydroppoint(_:description:)-5vybi │ │ └── index.html │ ├── accessibilitydroppoint(_:description:)-8w9pr │ │ └── index.html │ ├── accessibilitydroppoint(_:description:isenabled:)-1rd41 │ │ └── index.html │ ├── accessibilitydroppoint(_:description:isenabled:)-516fp │ │ └── index.html │ ├── accessibilitydroppoint(_:description:isenabled:)-q7oa │ │ └── index.html │ ├── accessibilityelement(children:) │ │ └── index.html │ ├── accessibilityfocused(_:) │ │ └── index.html │ ├── accessibilityfocused(_:equals:) │ │ └── index.html │ ├── accessibilityheading(_:) │ │ └── index.html │ ├── accessibilityhidden(_:) │ │ └── index.html │ ├── accessibilityhidden(_:isenabled:) │ │ └── index.html │ ├── accessibilityhint(_:)-3oaml │ │ └── index.html │ ├── accessibilityhint(_:)-5ybi │ │ └── index.html │ ├── accessibilityhint(_:)-kap5 │ │ └── index.html │ ├── accessibilityhint(_:isenabled:)-1uvvy │ │ └── index.html │ ├── accessibilityhint(_:isenabled:)-220qm │ │ └── index.html │ ├── accessibilityhint(_:isenabled:)-8pu96 │ │ └── index.html │ ├── accessibilityidentifier(_:) │ │ └── index.html │ ├── accessibilityidentifier(_:isenabled:) │ │ └── index.html │ ├── accessibilityignoresinvertcolors(_:) │ │ └── index.html │ ├── accessibilityinputlabels(_:)-3s179 │ │ └── index.html │ ├── accessibilityinputlabels(_:)-7e33t │ │ └── index.html │ ├── accessibilityinputlabels(_:)-841q3 │ │ └── index.html │ ├── accessibilityinputlabels(_:isenabled:)-7db5i │ │ └── index.html │ ├── accessibilityinputlabels(_:isenabled:)-7hzid │ │ └── index.html │ ├── accessibilityinputlabels(_:isenabled:)-8ys9 │ │ └── index.html │ ├── accessibilitylabel(_:)-2g77q │ │ └── index.html │ ├── accessibilitylabel(_:)-52ulj │ │ └── index.html │ ├── accessibilitylabel(_:)-6x3g4 │ │ └── index.html │ ├── accessibilitylabel(_:isenabled:)-1manw │ │ └── index.html │ ├── accessibilitylabel(_:isenabled:)-42j71 │ │ └── index.html │ ├── accessibilitylabel(_:isenabled:)-5lzza │ │ └── index.html │ ├── accessibilitylabel(content:) │ │ └── index.html │ ├── accessibilitylabeledpair(role:id:in:) │ │ └── index.html │ ├── accessibilitylinkedgroup(id:in:) │ │ └── index.html │ ├── accessibilityremovetraits(_:) │ │ └── index.html │ ├── accessibilityrepresentation(representation:) │ │ └── index.html │ ├── accessibilityrespondstouserinteraction(_:) │ │ └── index.html │ ├── accessibilityrespondstouserinteraction(_:isenabled:) │ │ └── index.html │ ├── accessibilityrotor(_:entries:)-1l9gk │ │ └── index.html │ ├── accessibilityrotor(_:entries:)-4fqs6 │ │ └── index.html │ ├── accessibilityrotor(_:entries:)-7dcbw │ │ └── index.html │ ├── accessibilityrotor(_:entries:)-8ey8h │ │ └── index.html │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-1jv3h │ │ └── index.html │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-39iaq │ │ └── index.html │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-3eite │ │ └── index.html │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-7wezb │ │ └── index.html │ ├── accessibilityrotor(_:entries:entrylabel:)-1025k │ │ └── index.html │ ├── accessibilityrotor(_:entries:entrylabel:)-1seak │ │ └── index.html │ ├── accessibilityrotor(_:entries:entrylabel:)-3fjbx │ │ └── index.html │ ├── accessibilityrotor(_:entries:entrylabel:)-3gy6a │ │ └── index.html │ ├── accessibilityrotor(_:textranges:)-4blfj │ │ └── index.html │ ├── accessibilityrotor(_:textranges:)-6qwgd │ │ └── index.html │ ├── accessibilityrotor(_:textranges:)-83cbr │ │ └── index.html │ ├── accessibilityrotor(_:textranges:)-90mrn │ │ └── index.html │ ├── accessibilityrotorentry(id:in:) │ │ └── index.html │ ├── accessibilityscrollaction(_:) │ │ └── index.html │ ├── accessibilityshowslargecontentviewer() │ │ └── index.html │ ├── accessibilityshowslargecontentviewer(_:) │ │ └── index.html │ ├── accessibilitysortpriority(_:) │ │ └── index.html │ ├── accessibilitytextcontenttype(_:) │ │ └── index.html │ ├── accessibilityvalue(_:)-3tryb │ │ └── index.html │ ├── accessibilityvalue(_:)-7i3kd │ │ └── index.html │ ├── accessibilityvalue(_:)-87jgm │ │ └── index.html │ ├── accessibilityvalue(_:isenabled:)-2avw2 │ │ └── index.html │ ├── accessibilityvalue(_:isenabled:)-926dd │ │ └── index.html │ ├── accessibilityvalue(_:isenabled:)-9ekue │ │ └── index.html │ ├── accessibilityzoomaction(_:) │ │ └── index.html │ ├── actionsheet(ispresented:content:) │ │ └── index.html │ ├── actionsheet(item:content:) │ │ └── index.html │ ├── alert(_:ispresented:actions:)-296o3 │ │ └── index.html │ ├── alert(_:ispresented:actions:)-3izkl │ │ └── index.html │ ├── alert(_:ispresented:actions:)-7cred │ │ └── index.html │ ├── alert(_:ispresented:actions:message:)-3ca0n │ │ └── index.html │ ├── alert(_:ispresented:actions:message:)-8k3c6 │ │ └── index.html │ ├── alert(_:ispresented:actions:message:)-99pij │ │ └── index.html │ ├── alert(_:ispresented:presenting:actions:)-70iic │ │ └── index.html │ ├── alert(_:ispresented:presenting:actions:)-73o29 │ │ └── index.html │ ├── alert(_:ispresented:presenting:actions:)-y1jc │ │ └── index.html │ ├── alert(_:ispresented:presenting:actions:message:)-3z9m1 │ │ └── index.html │ ├── alert(_:ispresented:presenting:actions:message:)-7toej │ │ └── index.html │ ├── alert(_:ispresented:presenting:actions:message:)-9i159 │ │ └── index.html │ ├── alert(ispresented:content:) │ │ └── index.html │ ├── alert(ispresented:error:actions:) │ │ └── index.html │ ├── alert(ispresented:error:actions:message:) │ │ └── index.html │ ├── alert(item:content:) │ │ └── index.html │ ├── alignmentguide(_:computevalue:)-618pk │ │ └── index.html │ ├── alignmentguide(_:computevalue:)-9i1mo │ │ └── index.html │ ├── alloweddynamicrange(_:) │ │ └── index.html │ ├── allowshittesting(_:) │ │ └── index.html │ ├── allowstightening(_:) │ │ └── index.html │ ├── allowswindowactivationevents(_:) │ │ └── index.html │ ├── anchorpreference(key:value:transform:) │ │ └── index.html │ ├── animation(_:) │ │ └── index.html │ ├── animation(_:body:) │ │ └── index.html │ ├── animation(_:value:) │ │ └── index.html │ ├── aspectratio(_:contentmode:)-5wlen │ │ └── index.html │ ├── aspectratio(_:contentmode:)-69qcn │ │ └── index.html │ ├── autocapitalization(_:) │ │ └── index.html │ ├── autocorrectiondisabled(_:) │ │ └── index.html │ ├── background(_:alignment:) │ │ └── index.html │ ├── background(_:ignoressafeareaedges:) │ │ └── index.html │ ├── background(_:in:fillstyle:)-23erj │ │ └── index.html │ ├── background(_:in:fillstyle:)-9o2lb │ │ └── index.html │ ├── background(alignment:content:) │ │ └── index.html │ ├── background(ignoressafeareaedges:) │ │ └── index.html │ ├── background(in:fillstyle:)-6bgzt │ │ └── index.html │ ├── background(in:fillstyle:)-7h4jp │ │ └── index.html │ ├── backgroundpreferencevalue(_:_:) │ │ └── index.html │ ├── backgroundpreferencevalue(_:alignment:_:) │ │ └── index.html │ ├── backgroundstyle(_:) │ │ └── index.html │ ├── badge(_:)-1ec9s │ │ └── index.html │ ├── badge(_:)-24js6 │ │ └── index.html │ ├── badge(_:)-3yfkp │ │ └── index.html │ ├── badge(_:)-6bf3 │ │ └── index.html │ ├── badgeprominence(_:) │ │ └── index.html │ ├── baselineoffset(_:) │ │ └── index.html │ ├── blendmode(_:) │ │ └── index.html │ ├── blur(radius:opaque:) │ │ └── index.html │ ├── body │ │ └── index.html │ ├── bold(_:) │ │ └── index.html │ ├── border(_:width:) │ │ └── index.html │ ├── brightness(_:) │ │ └── index.html │ ├── buttonbordershape(_:) │ │ └── index.html │ ├── buttonrepeatbehavior(_:) │ │ └── index.html │ ├── buttonstyle(_:)-5g3zr │ │ └── index.html │ ├── buttonstyle(_:)-6n6r5 │ │ └── index.html │ ├── clipped(antialiased:) │ │ └── index.html │ ├── clipshape(_:style:) │ │ └── index.html │ ├── coloreffect(_:isenabled:) │ │ └── index.html │ ├── colorinvert() │ │ └── index.html │ ├── colormultiply(_:) │ │ └── index.html │ ├── colorscheme(_:) │ │ └── index.html │ ├── compositinggroup() │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-2z0b3 │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-ch3c │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-lzjy │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-1jskz │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-7r56h │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-yn2t │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-32wiu │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-5w106 │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-72x7s │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-16z3z │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-7vz1j │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-8brso │ │ └── index.html │ ├── containerbackground(_:for:) │ │ └── index.html │ ├── containerbackground(for:alignment:content:) │ │ └── index.html │ ├── containerrelativeframe(_:alignment:) │ │ └── index.html │ ├── containerrelativeframe(_:alignment:_:) │ │ └── index.html │ ├── containerrelativeframe(_:count:span:spacing:alignment:) │ │ └── index.html │ ├── containershape(_:) │ │ └── index.html │ ├── containervalue(_:_:) │ │ └── index.html │ ├── contentmargins(_:_:for:)-214sf │ │ └── index.html │ ├── contentmargins(_:_:for:)-871zg │ │ └── index.html │ ├── contentmargins(_:for:) │ │ └── index.html │ ├── contentshape(_:_:eofill:) │ │ └── index.html │ ├── contentshape(_:eofill:) │ │ └── index.html │ ├── contenttransition(_:) │ │ └── index.html │ ├── contextmenu(_:) │ │ └── index.html │ ├── contextmenu(forselectiontype:menu:primaryaction:) │ │ └── index.html │ ├── contextmenu(menuitems:) │ │ └── index.html │ ├── contextmenu(menuitems:preview:) │ │ └── index.html │ ├── contrast(_:) │ │ └── index.html │ ├── controlgroupstyle(_:) │ │ └── index.html │ ├── controlsize(_:) │ │ └── index.html │ ├── coordinatespace(_:) │ │ └── index.html │ ├── coordinatespace(name:) │ │ └── index.html │ ├── cornerradius(_:antialiased:) │ │ └── index.html │ ├── datepickerstyle(_:) │ │ └── index.html │ ├── defaultadaptabletabbarplacement(_:) │ │ └── index.html │ ├── defaultappstorage(_:) │ │ └── index.html │ ├── defaultfocus(_:_:priority:) │ │ └── index.html │ ├── defaulthovereffect(_:)-6vhpk │ │ └── index.html │ ├── defaulthovereffect(_:)-8c7zm │ │ └── index.html │ ├── defaultscrollanchor(_:) │ │ └── index.html │ ├── defaultscrollanchor(_:for:) │ │ └── index.html │ ├── deferssystemgestures(on:) │ │ └── index.html │ ├── deletedisabled(_:) │ │ └── index.html │ ├── dialogicon(_:) │ │ └── index.html │ ├── dialogsuppressiontoggle(_:issuppressed:)-3lw49 │ │ └── index.html │ ├── dialogsuppressiontoggle(_:issuppressed:)-4zhic │ │ └── index.html │ ├── dialogsuppressiontoggle(_:issuppressed:)-5s5td │ │ └── index.html │ ├── dialogsuppressiontoggle(issuppressed:) │ │ └── index.html │ ├── disableautocorrection(_:) │ │ └── index.html │ ├── disabled(_:) │ │ └── index.html │ ├── disclosuregroupstyle(_:) │ │ └── index.html │ ├── distortioneffect(_:maxsampleoffset:isenabled:) │ │ └── index.html │ ├── documentbrowsercontextmenu(_:) │ │ └── index.html │ ├── draggable(_:) │ │ └── index.html │ ├── draggable(_:preview:) │ │ └── index.html │ ├── drawinggroup(opaque:colormode:) │ │ └── index.html │ ├── dropdestination(for:action:istargeted:) │ │ └── index.html │ ├── dynamictypesize(_:) │ │ └── index.html │ ├── edgesignoringsafearea(_:) │ │ └── index.html │ ├── environment(_:) │ │ └── index.html │ ├── environment(_:_:) │ │ └── index.html │ ├── environmentobject(_:) │ │ └── index.html │ ├── filedialogbrowseroptions(_:) │ │ └── index.html │ ├── filedialogconfirmationlabel(_:)-6r4mf │ │ └── index.html │ ├── filedialogconfirmationlabel(_:)-7cre3 │ │ └── index.html │ ├── filedialogconfirmationlabel(_:)-zxg4 │ │ └── index.html │ ├── filedialogcustomizationid(_:) │ │ └── index.html │ ├── filedialogdefaultdirectory(_:) │ │ └── index.html │ ├── filedialogimportsunresolvedaliases(_:) │ │ └── index.html │ ├── filedialogmessage(_:)-16bx5 │ │ └── index.html │ ├── filedialogmessage(_:)-30u19 │ │ └── index.html │ ├── filedialogmessage(_:)-7k3ll │ │ └── index.html │ ├── filedialogurlenabled(_:) │ │ └── index.html │ ├── fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-2y03i │ │ └── index.html │ ├── fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-3shne │ │ └── index.html │ ├── fileexporter(ispresented:document:contenttypes:defaultfilename:oncompletion:oncancellation:)-49akt │ │ └── index.html │ ├── fileexporter(ispresented:document:contenttypes:defaultfilename:oncompletion:oncancellation:)-5g299 │ │ └── index.html │ ├── fileexporter(ispresented:documents:contenttype:oncompletion:)-4lwbl │ │ └── index.html │ ├── fileexporter(ispresented:documents:contenttype:oncompletion:)-7yx6z │ │ └── index.html │ ├── fileexporter(ispresented:documents:contenttypes:oncompletion:oncancellation:)-5pknt │ │ └── index.html │ ├── fileexporter(ispresented:documents:contenttypes:oncompletion:oncancellation:)-8geyb │ │ └── index.html │ ├── fileexporter(ispresented:item:contenttypes:defaultfilename:oncompletion:oncancellation:) │ │ └── index.html │ ├── fileexporter(ispresented:items:contenttypes:oncompletion:oncancellation:) │ │ └── index.html │ ├── fileexporterfilenamelabel(_:)-3alym │ │ └── index.html │ ├── fileexporterfilenamelabel(_:)-4z1q5 │ │ └── index.html │ ├── fileexporterfilenamelabel(_:)-kbvh │ │ └── index.html │ ├── fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:) │ │ └── index.html │ ├── fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:oncancellation:) │ │ └── index.html │ ├── fileimporter(ispresented:allowedcontenttypes:oncompletion:) │ │ └── index.html │ ├── filemover(ispresented:file:oncompletion:) │ │ └── index.html │ ├── filemover(ispresented:file:oncompletion:oncancellation:) │ │ └── index.html │ ├── filemover(ispresented:files:oncompletion:) │ │ └── index.html │ ├── filemover(ispresented:files:oncompletion:oncancellation:) │ │ └── index.html │ ├── finddisabled(_:) │ │ └── index.html │ ├── findnavigator(ispresented:) │ │ └── index.html │ ├── fixedsize() │ │ └── index.html │ ├── fixedsize(horizontal:vertical:) │ │ └── index.html │ ├── flipsforrighttoleftlayoutdirection(_:) │ │ └── index.html │ ├── focusable(_:) │ │ └── index.html │ ├── focusable(_:interactions:) │ │ └── index.html │ ├── focused(_:) │ │ └── index.html │ ├── focused(_:equals:) │ │ └── index.html │ ├── focusedobject(_:)-2lczo │ │ └── index.html │ ├── focusedobject(_:)-4fl23 │ │ └── index.html │ ├── focusedsceneobject(_:)-5d2o8 │ │ └── index.html │ ├── focusedsceneobject(_:)-7wg2a │ │ └── index.html │ ├── focusedscenevalue(_:) │ │ └── index.html │ ├── focusedscenevalue(_:_:)-6437 │ │ └── index.html │ ├── focusedscenevalue(_:_:)-8zua6 │ │ └── index.html │ ├── focusedvalue(_:) │ │ └── index.html │ ├── focusedvalue(_:_:)-31xwb │ │ └── index.html │ ├── focusedvalue(_:_:)-8qmbk │ │ └── index.html │ ├── focuseffectdisabled(_:) │ │ └── index.html │ ├── font(_:) │ │ └── index.html │ ├── fontdesign(_:) │ │ └── index.html │ ├── fontweight(_:) │ │ └── index.html │ ├── fontwidth(_:) │ │ └── index.html │ ├── foregroundcolor(_:) │ │ └── index.html │ ├── foregroundstyle(_:) │ │ └── index.html │ ├── foregroundstyle(_:_:) │ │ └── index.html │ ├── foregroundstyle(_:_:_:) │ │ └── index.html │ ├── formstyle(_:) │ │ └── index.html │ ├── frame() │ │ └── index.html │ ├── frame(minwidth:idealwidth:maxwidth:minheight:idealheight:maxheight:alignment:) │ │ └── index.html │ ├── frame(width:height:alignment:) │ │ └── index.html │ ├── fullscreencover(ispresented:ondismiss:content:) │ │ └── index.html │ ├── fullscreencover(item:ondismiss:content:) │ │ └── index.html │ ├── gaugestyle(_:) │ │ └── index.html │ ├── geometrygroup() │ │ └── index.html │ ├── gesture(_:) │ │ └── index.html │ ├── gesture(_:including:) │ │ └── index.html │ ├── gesture(_:isenabled:) │ │ └── index.html │ ├── gesture(_:name:isenabled:) │ │ └── index.html │ ├── grayscale(_:) │ │ └── index.html │ ├── gridcellanchor(_:) │ │ └── index.html │ ├── gridcellcolumns(_:) │ │ └── index.html │ ├── gridcellunsizedaxes(_:) │ │ └── index.html │ ├── gridcolumnalignment(_:) │ │ └── index.html │ ├── groupboxstyle(_:) │ │ └── index.html │ ├── handgestureshortcut(_:isenabled:) │ │ └── index.html │ ├── handlesexternalevents(preferring:allowing:) │ │ └── index.html │ ├── handlingstacktabbartoolbarbehavior(inputnavigationnodetype:) │ │ └── index.html │ ├── headerprominence(_:) │ │ └── index.html │ ├── help(_:)-3tyut │ │ └── index.html │ ├── help(_:)-50qfv │ │ └── index.html │ ├── help(_:)-6u09z │ │ └── index.html │ ├── hidden() │ │ └── index.html │ ├── highprioritygesture(_:including:) │ │ └── index.html │ ├── highprioritygesture(_:isenabled:) │ │ └── index.html │ ├── highprioritygesture(_:name:isenabled:) │ │ └── index.html │ ├── hovereffect(_:) │ │ └── index.html │ ├── hovereffect(_:isenabled:)-6r2lb │ │ └── index.html │ ├── hovereffect(_:isenabled:)-mutj │ │ └── index.html │ ├── hovereffectdisabled(_:) │ │ └── index.html │ ├── huerotation(_:) │ │ └── index.html │ ├── id(_:) │ │ └── index.html │ ├── ignoressafearea(_:edges:) │ │ └── index.html │ ├── imagescale(_:) │ │ └── index.html │ ├── index.html │ ├── indexviewstyle(_:) │ │ └── index.html │ ├── init(rootnode:) │ │ └── index.html │ ├── inspector(ispresented:content:) │ │ └── index.html │ ├── inspectorcolumnwidth(_:) │ │ └── index.html │ ├── inspectorcolumnwidth(min:ideal:max:) │ │ └── index.html │ ├── interactionactivitytrackingtag(_:) │ │ └── index.html │ ├── interactivedismissdisabled(_:) │ │ └── index.html │ ├── invalidatablecontent(_:) │ │ └── index.html │ ├── italic(_:) │ │ └── index.html │ ├── itemprovider(_:) │ │ └── index.html │ ├── kerning(_:) │ │ └── index.html │ ├── keyboardshortcut(_:)-1fyy3 │ │ └── index.html │ ├── keyboardshortcut(_:)-tpl2 │ │ └── index.html │ ├── keyboardshortcut(_:modifiers:) │ │ └── index.html │ ├── keyboardshortcut(_:modifiers:localization:) │ │ └── index.html │ ├── keyboardtype(_:) │ │ └── index.html │ ├── keyframeanimator(initialvalue:repeating:content:keyframes:) │ │ └── index.html │ ├── keyframeanimator(initialvalue:trigger:content:keyframes:) │ │ └── index.html │ ├── labeledcontentstyle(_:) │ │ └── index.html │ ├── labelshidden() │ │ └── index.html │ ├── labelstyle(_:) │ │ └── index.html │ ├── labelsvisibility(_:) │ │ └── index.html │ ├── layereffect(_:maxsampleoffset:isenabled:) │ │ └── index.html │ ├── layoutdirectionbehavior(_:) │ │ └── index.html │ ├── layoutpriority(_:) │ │ └── index.html │ ├── layoutvalue(key:value:) │ │ └── index.html │ ├── linelimit(_:)-2oro │ │ └── index.html │ ├── linelimit(_:)-5x4b0 │ │ └── index.html │ ├── linelimit(_:)-80xq2 │ │ └── index.html │ ├── linelimit(_:)-9eosr │ │ └── index.html │ ├── linelimit(_:reservesspace:) │ │ └── index.html │ ├── linespacing(_:) │ │ └── index.html │ ├── listitemtint(_:)-4pw01 │ │ └── index.html │ ├── listitemtint(_:)-69mnr │ │ └── index.html │ ├── listrowbackground(_:) │ │ └── index.html │ ├── listrowinsets(_:) │ │ └── index.html │ ├── listrowseparator(_:edges:) │ │ └── index.html │ ├── listrowseparatortint(_:edges:) │ │ └── index.html │ ├── listrowspacing(_:) │ │ └── index.html │ ├── listsectionseparator(_:edges:) │ │ └── index.html │ ├── listsectionseparatortint(_:edges:) │ │ └── index.html │ ├── listsectionspacing(_:)-4ihcq │ │ └── index.html │ ├── listsectionspacing(_:)-91ey3 │ │ └── index.html │ ├── liststyle(_:) │ │ └── index.html │ ├── luminancetoalpha() │ │ └── index.html │ ├── mask(_:) │ │ └── index.html │ ├── mask(alignment:_:) │ │ └── index.html │ ├── matchedgeometryeffect(id:in:properties:anchor:issource:) │ │ └── index.html │ ├── matchedtransitionsource(id:in:) │ │ └── index.html │ ├── matchedtransitionsource(id:in:configuration:) │ │ └── index.html │ ├── materialactiveappearance(_:) │ │ └── index.html │ ├── menuactiondismissbehavior(_:) │ │ └── index.html │ ├── menuindicator(_:) │ │ └── index.html │ ├── menuorder(_:) │ │ └── index.html │ ├── menustyle(_:) │ │ └── index.html │ ├── minimumscalefactor(_:) │ │ └── index.html │ ├── modifier(_:) │ │ └── index.html │ ├── monospaced(_:) │ │ └── index.html │ ├── monospaceddigit() │ │ └── index.html │ ├── movedisabled(_:) │ │ └── index.html │ ├── multilinetextalignment(_:) │ │ └── index.html │ ├── navigationbarbackbuttonhidden(_:) │ │ └── index.html │ ├── navigationbarhidden(_:) │ │ └── index.html │ ├── navigationbaritems(leading:) │ │ └── index.html │ ├── navigationbaritems(leading:trailing:) │ │ └── index.html │ ├── navigationbaritems(trailing:) │ │ └── index.html │ ├── navigationbartitle(_:)-7mxpz │ │ └── index.html │ ├── navigationbartitle(_:)-7o5p0 │ │ └── index.html │ ├── navigationbartitle(_:)-7qg1i │ │ └── index.html │ ├── navigationbartitle(_:displaymode:)-11slx │ │ └── index.html │ ├── navigationbartitle(_:displaymode:)-4gjyb │ │ └── index.html │ ├── navigationbartitle(_:displaymode:)-8u6s0 │ │ └── index.html │ ├── navigationbartitledisplaymode(_:) │ │ └── index.html │ ├── navigationdestination(for:destination:) │ │ └── index.html │ ├── navigationdestination(ispresented:destination:) │ │ └── index.html │ ├── navigationdestination(item:destination:) │ │ └── index.html │ ├── navigationdocument(_:) │ │ └── index.html │ ├── navigationdocument(_:preview:)-1krss │ │ └── index.html │ ├── navigationdocument(_:preview:)-588az │ │ └── index.html │ ├── navigationdocument(_:preview:)-6yl6s │ │ └── index.html │ ├── navigationdocument(_:preview:)-pqg5 │ │ └── index.html │ ├── navigationenvironmenttriggerhandler(_:) │ │ └── index.html │ ├── navigationsplitviewcolumnwidth(_:) │ │ └── index.html │ ├── navigationsplitviewcolumnwidth(min:ideal:max:) │ │ └── index.html │ ├── navigationsplitviewstyle(_:) │ │ └── index.html │ ├── navigationtitle(_:)-10p7y │ │ └── index.html │ ├── navigationtitle(_:)-7kdrx │ │ └── index.html │ ├── navigationtitle(_:)-7qlbg │ │ └── index.html │ ├── navigationtitle(_:)-9lhfs │ │ └── index.html │ ├── navigationtitle(_:)-9qpjl │ │ └── index.html │ ├── navigationtransition(_:) │ │ └── index.html │ ├── navigationviewstyle(_:) │ │ └── index.html │ ├── offset(_:) │ │ └── index.html │ ├── offset(x:y:) │ │ └── index.html │ ├── onappear(perform:) │ │ └── index.html │ ├── onchange(of:initial:_:)-5nttb │ │ └── index.html │ ├── onchange(of:initial:_:)-932z0 │ │ └── index.html │ ├── onchange(of:perform:) │ │ └── index.html │ ├── oncontinueuseractivity(_:perform:) │ │ └── index.html │ ├── oncontinuoushover(coordinatespace:perform:) │ │ └── index.html │ ├── ondisappear(perform:) │ │ └── index.html │ ├── ondrag(_:) │ │ └── index.html │ ├── ondrag(_:preview:) │ │ └── index.html │ ├── ondrop(of:delegate:)-666lc │ │ └── index.html │ ├── ondrop(of:delegate:)-86u35 │ │ └── index.html │ ├── ondrop(of:istargeted:perform:)-1a4q5 │ │ └── index.html │ ├── ondrop(of:istargeted:perform:)-1fg9k │ │ └── index.html │ ├── ondrop(of:istargeted:perform:)-2op0 │ │ └── index.html │ ├── ondrop(of:istargeted:perform:)-7gn8m │ │ └── index.html │ ├── ongeometrychange(for:of:action:)-2auow │ │ └── index.html │ ├── ongeometrychange(for:of:action:)-8eskc │ │ └── index.html │ ├── onhover(perform:) │ │ └── index.html │ ├── onkeypress(_:action:) │ │ └── index.html │ ├── onkeypress(_:phases:action:) │ │ └── index.html │ ├── onkeypress(characters:phases:action:) │ │ └── index.html │ ├── onkeypress(keys:phases:action:) │ │ └── index.html │ ├── onkeypress(phases:action:) │ │ └── index.html │ ├── onlongpressgesture(minimumduration:maximumdistance:perform:onpressingchanged:) │ │ └── index.html │ ├── onlongpressgesture(minimumduration:maximumdistance:pressing:perform:) │ │ └── index.html │ ├── onlongpressgesture(minimumduration:perform:onpressingchanged:) │ │ └── index.html │ ├── onlongpressgesture(minimumduration:pressing:perform:) │ │ └── index.html │ ├── onopenurl(perform:) │ │ └── index.html │ ├── onpencildoubletap(perform:) │ │ └── index.html │ ├── onpencilsqueeze(perform:) │ │ └── index.html │ ├── onpreferencechange(_:perform:) │ │ └── index.html │ ├── onreceive(_:perform:) │ │ └── index.html │ ├── onscrollgeometrychange(for:of:action:) │ │ └── index.html │ ├── onscrollphasechange(_:)-24zqu │ │ └── index.html │ ├── onscrollphasechange(_:)-qnz │ │ └── index.html │ ├── onscrolltargetvisibilitychange(idtype:threshold:_:) │ │ └── index.html │ ├── onscrollvisibilitychange(threshold:_:) │ │ └── index.html │ ├── onsubmit(of:_:) │ │ └── index.html │ ├── ontapgesture(count:coordinatespace:perform:) │ │ └── index.html │ ├── ontapgesture(count:perform:) │ │ └── index.html │ ├── opacity(_:) │ │ └── index.html │ ├── overlay(_:alignment:) │ │ └── index.html │ ├── overlay(_:ignoressafeareaedges:) │ │ └── index.html │ ├── overlay(_:in:fillstyle:) │ │ └── index.html │ ├── overlay(alignment:content:) │ │ └── index.html │ ├── overlaypreferencevalue(_:_:) │ │ └── index.html │ ├── overlaypreferencevalue(_:alignment:_:) │ │ └── index.html │ ├── padding(_:)-1zuhm │ │ └── index.html │ ├── padding(_:)-5mf75 │ │ └── index.html │ ├── padding(_:_:) │ │ └── index.html │ ├── paletteselectioneffect(_:) │ │ └── index.html │ ├── persistentsystemoverlays(_:) │ │ └── index.html │ ├── phaseanimator(_:content:animation:) │ │ └── index.html │ ├── phaseanimator(_:trigger:content:animation:) │ │ └── index.html │ ├── pickerstyle(_:) │ │ └── index.html │ ├── popover(ispresented:attachmentanchor:arrowedge:content:) │ │ └── index.html │ ├── popover(item:attachmentanchor:arrowedge:content:) │ │ └── index.html │ ├── position(_:) │ │ └── index.html │ ├── position(x:y:) │ │ └── index.html │ ├── preference(key:value:) │ │ └── index.html │ ├── preferredcolorscheme(_:) │ │ └── index.html │ ├── presentationbackground(_:) │ │ └── index.html │ ├── presentationbackground(alignment:content:) │ │ └── index.html │ ├── presentationbackgroundinteraction(_:) │ │ └── index.html │ ├── presentationcompactadaptation(_:) │ │ └── index.html │ ├── presentationcompactadaptation(horizontal:vertical:) │ │ └── index.html │ ├── presentationcontentinteraction(_:) │ │ └── index.html │ ├── presentationcornerradius(_:) │ │ └── index.html │ ├── presentationdetents(_:) │ │ └── index.html │ ├── presentationdetents(_:selection:) │ │ └── index.html │ ├── presentationdragindicator(_:) │ │ └── index.html │ ├── presentationsizing(_:) │ │ └── index.html │ ├── presentingnavigationsource(id:) │ │ └── index.html │ ├── previewcontext(_:) │ │ └── index.html │ ├── previewdevice(_:) │ │ └── index.html │ ├── previewdisplayname(_:) │ │ └── index.html │ ├── previewinterfaceorientation(_:) │ │ └── index.html │ ├── previewlayout(_:) │ │ └── index.html │ ├── privacysensitive(_:) │ │ └── index.html │ ├── progressviewstyle(_:) │ │ └── index.html │ ├── projectioneffect(_:) │ │ └── index.html │ ├── redacted(reason:) │ │ └── index.html │ ├── refreshable(action:) │ │ └── index.html │ ├── registercustompresentablenavigationnodes(_:) │ │ └── index.html │ ├── renameaction(_:)-26ecf │ │ └── index.html │ ├── renameaction(_:)-8y8o6 │ │ └── index.html │ ├── replacedisabled(_:) │ │ └── index.html │ ├── rotation3deffect(_:axis:anchor:anchorz:perspective:) │ │ └── index.html │ ├── rotationeffect(_:anchor:) │ │ └── index.html │ ├── safeareainset(edge:alignment:spacing:content:)-5ti2u │ │ └── index.html │ ├── safeareainset(edge:alignment:spacing:content:)-8lxz3 │ │ └── index.html │ ├── safeareapadding(_:)-6fm36 │ │ └── index.html │ ├── safeareapadding(_:)-8ghua │ │ └── index.html │ ├── safeareapadding(_:_:) │ │ └── index.html │ ├── saturation(_:) │ │ └── index.html │ ├── scaledtofill() │ │ └── index.html │ ├── scaledtofit() │ │ └── index.html │ ├── scaleeffect(_:anchor:)-4zmo1 │ │ └── index.html │ ├── scaleeffect(_:anchor:)-6hxo8 │ │ └── index.html │ ├── scaleeffect(x:y:anchor:) │ │ └── index.html │ ├── scenepadding(_:) │ │ └── index.html │ ├── scenepadding(_:edges:) │ │ └── index.html │ ├── scrollbouncebehavior(_:axes:) │ │ └── index.html │ ├── scrollclipdisabled(_:) │ │ └── index.html │ ├── scrollcontentbackground(_:) │ │ └── index.html │ ├── scrolldisabled(_:) │ │ └── index.html │ ├── scrolldismisseskeyboard(_:) │ │ └── index.html │ ├── scrollindicators(_:axes:) │ │ └── index.html │ ├── scrollindicatorsflash(onappear:) │ │ └── index.html │ ├── scrollindicatorsflash(trigger:) │ │ └── index.html │ ├── scrollinputbehavior(_:for:) │ │ └── index.html │ ├── scrollposition(_:anchor:) │ │ └── index.html │ ├── scrollposition(id:anchor:) │ │ └── index.html │ ├── scrolltargetbehavior(_:) │ │ └── index.html │ ├── scrolltargetlayout(isenabled:) │ │ └── index.html │ ├── scrolltransition(_:axis:transition:) │ │ └── index.html │ ├── scrolltransition(topleading:bottomtrailing:axis:transition:) │ │ └── index.html │ ├── searchable(text:editabletokens:ispresented:placement:prompt:token:)-88l0j │ │ └── index.html │ ├── searchable(text:editabletokens:ispresented:placement:prompt:token:)-8xdc2 │ │ └── index.html │ ├── searchable(text:editabletokens:ispresented:placement:prompt:token:)-9ppsm │ │ └── index.html │ ├── searchable(text:editabletokens:placement:prompt:token:)-1nze8 │ │ └── index.html │ ├── searchable(text:editabletokens:placement:prompt:token:)-6o01z │ │ └── index.html │ ├── searchable(text:editabletokens:placement:prompt:token:)-70p9b │ │ └── index.html │ ├── searchable(text:ispresented:placement:prompt:)-148c8 │ │ └── index.html │ ├── searchable(text:ispresented:placement:prompt:)-3l2jk │ │ └── index.html │ ├── searchable(text:ispresented:placement:prompt:)-4ex22 │ │ └── index.html │ ├── searchable(text:placement:prompt:)-41xnc │ │ └── index.html │ ├── searchable(text:placement:prompt:)-4m5t1 │ │ └── index.html │ ├── searchable(text:placement:prompt:)-7sp6j │ │ └── index.html │ ├── searchable(text:placement:prompt:suggestions:)-330fm │ │ └── index.html │ ├── searchable(text:placement:prompt:suggestions:)-3v4il │ │ └── index.html │ ├── searchable(text:placement:prompt:suggestions:)-4mdjb │ │ └── index.html │ ├── searchable(text:tokens:ispresented:placement:prompt:token:)-56am8 │ │ └── index.html │ ├── searchable(text:tokens:ispresented:placement:prompt:token:)-8cxgi │ │ └── index.html │ ├── searchable(text:tokens:ispresented:placement:prompt:token:)-8tvnm │ │ └── index.html │ ├── searchable(text:tokens:placement:prompt:token:)-153fz │ │ └── index.html │ ├── searchable(text:tokens:placement:prompt:token:)-3iit5 │ │ └── index.html │ ├── searchable(text:tokens:placement:prompt:token:)-6mmdb │ │ └── index.html │ ├── searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-4fnap │ │ └── index.html │ ├── searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-4p5i7 │ │ └── index.html │ ├── searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-qa13 │ │ └── index.html │ ├── searchable(text:tokens:suggestedtokens:placement:prompt:token:)-10t7d │ │ └── index.html │ ├── searchable(text:tokens:suggestedtokens:placement:prompt:token:)-5ojos │ │ └── index.html │ ├── searchable(text:tokens:suggestedtokens:placement:prompt:token:)-6yfi8 │ │ └── index.html │ ├── searchcompletion(_:) │ │ └── index.html │ ├── searchdictationbehavior(_:) │ │ └── index.html │ ├── searchfocused(_:) │ │ └── index.html │ ├── searchfocused(_:equals:) │ │ └── index.html │ ├── searchpresentationtoolbarbehavior(_:) │ │ └── index.html │ ├── searchscopes(_:activation:_:) │ │ └── index.html │ ├── searchscopes(_:scopes:) │ │ └── index.html │ ├── searchsuggestions(_:) │ │ └── index.html │ ├── searchsuggestions(_:for:) │ │ └── index.html │ ├── sectionactions(content:) │ │ └── index.html │ ├── selectiondisabled(_:) │ │ └── index.html │ ├── sensoryfeedback(_:trigger:) │ │ └── index.html │ ├── sensoryfeedback(_:trigger:condition:) │ │ └── index.html │ ├── sensoryfeedback(trigger:_:) │ │ └── index.html │ ├── shadow(color:radius:x:y:) │ │ └── index.html │ ├── sheet(ispresented:ondismiss:content:) │ │ └── index.html │ ├── sheet(item:ondismiss:content:) │ │ └── index.html │ ├── simultaneousgesture(_:including:) │ │ └── index.html │ ├── simultaneousgesture(_:isenabled:) │ │ └── index.html │ ├── simultaneousgesture(_:name:isenabled:) │ │ └── index.html │ ├── speechadjustedpitch(_:) │ │ └── index.html │ ├── speechalwaysincludespunctuation(_:) │ │ └── index.html │ ├── speechannouncementsqueued(_:) │ │ └── index.html │ ├── speechspellsoutcharacters(_:) │ │ └── index.html │ ├── springloadingbehavior(_:) │ │ └── index.html │ ├── statusbar(hidden:) │ │ └── index.html │ ├── statusbarhidden(_:) │ │ └── index.html │ ├── strikethrough(_:pattern:color:) │ │ └── index.html │ ├── submitlabel(_:) │ │ └── index.html │ ├── submitscope(_:) │ │ └── index.html │ ├── swipeactions(edge:allowsfullswipe:content:) │ │ └── index.html │ ├── symboleffect(_:options:isactive:) │ │ └── index.html │ ├── symboleffect(_:options:value:) │ │ └── index.html │ ├── symboleffectsremoved(_:) │ │ └── index.html │ ├── symbolrenderingmode(_:) │ │ └── index.html │ ├── symbolvariant(_:) │ │ └── index.html │ ├── tabitem(_:) │ │ └── index.html │ ├── tablecolumnheaders(_:) │ │ └── index.html │ ├── tablestyle(_:) │ │ └── index.html │ ├── tabviewcustomization(_:) │ │ └── index.html │ ├── tabviewsidebarbottombar(content:) │ │ └── index.html │ ├── tabviewsidebarfooter(content:) │ │ └── index.html │ ├── tabviewsidebarheader(content:) │ │ └── index.html │ ├── tabviewstyle(_:) │ │ └── index.html │ ├── tag(_:includeoptional:) │ │ └── index.html │ ├── task(id:priority:_:) │ │ └── index.html │ ├── task(priority:_:) │ │ └── index.html │ ├── textcase(_:) │ │ └── index.html │ ├── textcontenttype(_:) │ │ └── index.html │ ├── texteditorstyle(_:) │ │ └── index.html │ ├── textfieldstyle(_:) │ │ └── index.html │ ├── textinputautocapitalization(_:) │ │ └── index.html │ ├── textrenderer(_:) │ │ └── index.html │ ├── textscale(_:isenabled:) │ │ └── index.html │ ├── textselection(_:) │ │ └── index.html │ ├── textselectionaffinity(_:) │ │ └── index.html │ ├── tint(_:) │ │ └── index.html │ ├── togglestyle(_:) │ │ └── index.html │ ├── toolbar(_:for:) │ │ └── index.html │ ├── toolbar(content:)-6etfp │ │ └── index.html │ ├── toolbar(content:)-8hg4s │ │ └── index.html │ ├── toolbar(id:content:) │ │ └── index.html │ ├── toolbar(removing:) │ │ └── index.html │ ├── toolbarbackground(_:for:) │ │ └── index.html │ ├── toolbarbackgroundvisibility(_:for:) │ │ └── index.html │ ├── toolbarcolorscheme(_:for:) │ │ └── index.html │ ├── toolbarforegroundstyle(_:for:) │ │ └── index.html │ ├── toolbarrole(_:) │ │ └── index.html │ ├── toolbartitledisplaymode(_:) │ │ └── index.html │ ├── toolbartitlemenu(content:) │ │ └── index.html │ ├── toolbarvisibility(_:for:) │ │ └── index.html │ ├── tracking(_:) │ │ └── index.html │ ├── transaction(_:) │ │ └── index.html │ ├── transaction(_:body:) │ │ └── index.html │ ├── transaction(value:_:) │ │ └── index.html │ ├── transformanchorpreference(key:value:transform:) │ │ └── index.html │ ├── transformeffect(_:) │ │ └── index.html │ ├── transformenvironment(_:transform:) │ │ └── index.html │ ├── transformpreference(_:_:) │ │ └── index.html │ ├── transition(_:) │ │ └── index.html │ ├── truncationmode(_:) │ │ └── index.html │ ├── typeselectequivalent(_:)-19i6m │ │ └── index.html │ ├── typeselectequivalent(_:)-4djek │ │ └── index.html │ ├── typeselectequivalent(_:)-4h99t │ │ └── index.html │ ├── typesettinglanguage(_:isenabled:)-3erjy │ │ └── index.html │ ├── typesettinglanguage(_:isenabled:)-8zjhv │ │ └── index.html │ ├── underline(_:pattern:color:) │ │ └── index.html │ ├── unredacted() │ │ └── index.html │ ├── useractivity(_:element:_:) │ │ └── index.html │ ├── useractivity(_:isactive:_:) │ │ └── index.html │ ├── view-implementations │ │ └── index.html │ ├── visualeffect(_:) │ │ └── index.html │ ├── windowtoolbarfullscreenvisibility(_:) │ │ └── index.html │ ├── writingtoolsbehavior(_:) │ │ └── index.html │ └── zindex(_:) │ │ └── index.html │ ├── openurlnavigationcommand │ ├── canexecute(on:) │ │ └── index.html │ ├── execute(on:) │ │ └── index.html │ ├── index.html │ ├── init(url:) │ │ └── index.html │ ├── navigationcommand-implementations │ │ └── index.html │ ├── openurl(_:) │ │ └── index.html │ └── perform(animated:action:) │ │ └── index.html │ ├── openwindownavigationcommand │ ├── canexecute(on:) │ │ └── index.html │ ├── execute(on:) │ │ └── index.html │ ├── index.html │ ├── init(id:) │ │ └── index.html │ ├── navigationcommand-implementations │ │ └── index.html │ ├── openwindow(id:) │ │ └── index.html │ └── perform(animated:action:) │ │ └── index.html │ ├── presentednavigationnode │ ├── alert(_:sourceid:) │ │ └── index.html │ ├── body │ │ └── index.html │ ├── confirmationdialog(_:sourceid:) │ │ └── index.html │ ├── fullscreencover(_:) │ │ └── index.html │ ├── index.html │ ├── makeispresentedbinding(presentednode:sourceid:) │ │ └── index.html │ ├── node │ │ └── index.html │ ├── presenterresolvedviewmodifier(presentednode:content:sourceid:) │ │ └── index.html │ ├── sheet(_:sourceid:) │ │ └── index.html │ └── sourceid │ │ └── index.html │ ├── presentingnavigationsourceviewmodifier │ ├── animation(_:) │ │ └── index.html │ ├── body(content:) │ │ └── index.html │ ├── concat(_:) │ │ └── index.html │ ├── index.html │ ├── transaction(_:) │ │ └── index.html │ └── viewmodifier-implementations │ │ └── index.html │ ├── presentnavigationcommand │ ├── canexecute(on:) │ │ └── index.html │ ├── execute(on:) │ │ └── index.html │ ├── index.html │ ├── init(presentednode:animated:) │ │ └── index.html │ ├── navigationcommand-implementations │ │ └── index.html │ ├── perform(animated:action:) │ │ └── index.html │ └── present(_:animated:) │ │ └── index.html │ ├── presentongivennodenavigationcommand │ ├── canexecute(on:) │ │ └── index.html │ ├── execute(on:) │ │ └── index.html │ ├── index.html │ ├── init(presentednode:animated:) │ │ └── index.html │ ├── navigationcommand-implementations │ │ └── index.html │ └── perform(animated:action:) │ │ └── index.html │ ├── removalnavigationmessage │ └── index.html │ ├── resolvedhidenavigationcommand │ ├── canexecute(on:) │ │ └── index.html │ ├── execute(on:) │ │ └── index.html │ ├── hide(animated:) │ │ └── index.html │ ├── index.html │ ├── init(animated:) │ │ └── index.html │ ├── navigationcommand-implementations │ │ └── index.html │ └── perform(animated:action:) │ │ └── index.html │ ├── sfsafariinputdata │ ├── index.html │ └── init(url:) │ │ └── index.html │ ├── sfsafarinavigationnode │ ├── addmessagelistener(_:) │ │ └── index.html │ ├── basenavigationnodechildren │ │ └── index.html │ ├── body │ │ └── index.html │ ├── canexecute(_:) │ │ └── index.html │ ├── canpresentifwouldnt │ │ └── index.html │ ├── children │ │ └── index.html │ ├── childrennodeswhichcanpresent │ │ └── index.html │ ├── execute(_:) │ │ └── index.html │ ├── finishifneeded() │ │ └── index.html │ ├── index.html │ ├── init(inputdata:) │ │ └── index.html │ ├── iswrappernode │ │ └── index.html │ ├── navigationnode-implementations │ │ └── index.html │ ├── nearestchildrennodewhichcanpresent │ │ └── index.html │ ├── nearestnodewhichcanpresent │ │ └── index.html │ ├── nearestnodewhichcanpresentfromparent │ │ └── index.html │ ├── objectwillchange │ │ └── index.html │ ├── observableobject-implementations │ │ └── index.html │ ├── onmessagereceived(_:) │ │ └── index.html │ ├── parent │ │ └── index.html │ ├── predecessors │ │ └── index.html │ ├── predecessorsincludingself │ │ └── index.html │ ├── presentednode │ │ └── index.html │ ├── printdebuggraph() │ │ └── index.html │ ├── printdebugtext(_:) │ │ └── index.html │ ├── root │ │ └── index.html │ ├── sendenvironmenttrigger(_:) │ │ └── index.html │ ├── sendmessage(_:) │ │ └── index.html │ ├── startifneeded(parent:) │ │ └── index.html │ ├── successors │ │ └── index.html │ ├── successorsincludingself │ │ └── index.html │ └── toppresented │ │ └── index.html │ ├── sheetpresentednavigationnode │ ├── index.html │ ├── makeispresentedbinding(presentednode:sourceid:) │ │ └── index.html │ ├── node │ │ └── index.html │ ├── presentednavigationnode-implementations │ │ └── index.html │ ├── presenterresolvedviewmodifier(presentednode:content:sourceid:) │ │ └── index.html │ ├── sheet(_:sourceid:) │ │ └── index.html │ └── sourceid │ │ └── index.html │ ├── stackappendnavigationcommand │ ├── canexecute(on:) │ │ └── index.html │ ├── execute(on:) │ │ └── index.html │ ├── index.html │ ├── init(appendednode:animated:)-3irth │ │ └── index.html │ ├── init(appendednode:animated:)-7xn8w │ │ └── index.html │ ├── navigationcommand-implementations │ │ └── index.html │ ├── perform(animated:action:) │ │ └── index.html │ ├── stackappend(_:animated:)-870gc │ │ └── index.html │ └── stackappend(_:animated:)-8q7el │ │ └── index.html │ ├── stackdroplastnavigationcommand │ ├── canexecute(on:) │ │ └── index.html │ ├── execute(on:) │ │ └── index.html │ ├── index.html │ ├── init(k:animated:) │ │ └── index.html │ ├── navigationcommand-implementations │ │ └── index.html │ ├── perform(animated:action:) │ │ └── index.html │ └── stackdroplast(_:animated:) │ │ └── index.html │ ├── stackdroptorootnavigationcommand │ ├── canexecute(on:) │ │ └── index.html │ ├── execute(on:) │ │ └── index.html │ ├── index.html │ ├── init(animated:) │ │ └── index.html │ ├── navigationcommand-implementations │ │ └── index.html │ ├── perform(animated:action:) │ │ └── index.html │ └── stackdroptoroot(animated:) │ │ └── index.html │ ├── stackmapnavigationcommand │ ├── canexecute(on:) │ │ └── index.html │ ├── execute(on:) │ │ └── index.html │ ├── index.html │ ├── init(animated:transform:) │ │ └── index.html │ ├── navigationcommand-implementations │ │ └── index.html │ ├── perform(animated:action:) │ │ └── index.html │ └── stackmap(_:animated:) │ │ └── index.html │ ├── stacknavigationnode │ ├── destination │ │ └── index.html │ ├── index.html │ └── init(destination:transition:) │ │ └── index.html │ ├── stacknavigationtransition │ ├── !=(_:_:) │ │ └── index.html │ ├── equatable-implementations │ │ └── index.html │ ├── index.html │ └── zoom(sourceid:) │ │ └── index.html │ ├── stackrootnavigationnode() │ └── index.html │ ├── stackrootnavigationnode │ ├── body(for:) │ │ └── index.html │ ├── index.html │ ├── modifiedview │ │ └── index.html │ ├── setnewpath(_:) │ │ └── index.html │ ├── stacknodes │ │ └── index.html │ └── tabbartoolbarbehavior │ │ └── index.html │ ├── stackrootnavigationnodeview │ ├── accentcolor(_:) │ │ └── index.html │ ├── accessibility(activationpoint:)-1cwte │ │ └── index.html │ ├── accessibility(activationpoint:)-2apet │ │ └── index.html │ ├── accessibility(addtraits:) │ │ └── index.html │ ├── accessibility(hidden:) │ │ └── index.html │ ├── accessibility(hint:) │ │ └── index.html │ ├── accessibility(identifier:) │ │ └── index.html │ ├── accessibility(inputlabels:) │ │ └── index.html │ ├── accessibility(label:) │ │ └── index.html │ ├── accessibility(removetraits:) │ │ └── index.html │ ├── accessibility(selectionidentifier:) │ │ └── index.html │ ├── accessibility(sortpriority:) │ │ └── index.html │ ├── accessibility(value:) │ │ └── index.html │ ├── accessibilityaction(_:_:) │ │ └── index.html │ ├── accessibilityaction(action:label:) │ │ └── index.html │ ├── accessibilityaction(named:_:)-1urp9 │ │ └── index.html │ ├── accessibilityaction(named:_:)-2q70a │ │ └── index.html │ ├── accessibilityaction(named:_:)-gcgu │ │ └── index.html │ ├── accessibilityactions(_:) │ │ └── index.html │ ├── accessibilityactions(category:_:) │ │ └── index.html │ ├── accessibilityactivationpoint(_:)-61j3u │ │ └── index.html │ ├── accessibilityactivationpoint(_:)-7tsky │ │ └── index.html │ ├── accessibilityactivationpoint(_:isenabled:)-ih90 │ │ └── index.html │ ├── accessibilityactivationpoint(_:isenabled:)-ueu3 │ │ └── index.html │ ├── accessibilityaddtraits(_:) │ │ └── index.html │ ├── accessibilityadjustableaction(_:) │ │ └── index.html │ ├── accessibilitychartdescriptor(_:) │ │ └── index.html │ ├── accessibilitychildren(children:) │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-15hid │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-2l9d4 │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-4t4u4 │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-5ozyz │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-5zru0 │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-63axx │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-8t545 │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-8ukg4 │ │ └── index.html │ ├── accessibilitydirecttouch(_:options:) │ │ └── index.html │ ├── accessibilitydragpoint(_:description:)-3qgbp │ │ └── index.html │ ├── accessibilitydragpoint(_:description:)-5ewbt │ │ └── index.html │ ├── accessibilitydragpoint(_:description:)-5i70m │ │ └── index.html │ ├── accessibilitydragpoint(_:description:isenabled:)-10htc │ │ └── index.html │ ├── accessibilitydragpoint(_:description:isenabled:)-2ceki │ │ └── index.html │ ├── accessibilitydragpoint(_:description:isenabled:)-52y0u │ │ └── index.html │ ├── accessibilitydroppoint(_:description:)-2pbro │ │ └── index.html │ ├── accessibilitydroppoint(_:description:)-3rp8s │ │ └── index.html │ ├── accessibilitydroppoint(_:description:)-4c4el │ │ └── index.html │ ├── accessibilitydroppoint(_:description:isenabled:)-26cnc │ │ └── index.html │ ├── accessibilitydroppoint(_:description:isenabled:)-2nsug │ │ └── index.html │ ├── accessibilitydroppoint(_:description:isenabled:)-7nmr1 │ │ └── index.html │ ├── accessibilityelement(children:) │ │ └── index.html │ ├── accessibilityfocused(_:) │ │ └── index.html │ ├── accessibilityfocused(_:equals:) │ │ └── index.html │ ├── accessibilityheading(_:) │ │ └── index.html │ ├── accessibilityhidden(_:) │ │ └── index.html │ ├── accessibilityhidden(_:isenabled:) │ │ └── index.html │ ├── accessibilityhint(_:)-5l7fu │ │ └── index.html │ ├── accessibilityhint(_:)-62uh5 │ │ └── index.html │ ├── accessibilityhint(_:)-78f9p │ │ └── index.html │ ├── accessibilityhint(_:isenabled:)-35e5x │ │ └── index.html │ ├── accessibilityhint(_:isenabled:)-4ofu6 │ │ └── index.html │ ├── accessibilityhint(_:isenabled:)-5jf41 │ │ └── index.html │ ├── accessibilityidentifier(_:) │ │ └── index.html │ ├── accessibilityidentifier(_:isenabled:) │ │ └── index.html │ ├── accessibilityignoresinvertcolors(_:) │ │ └── index.html │ ├── accessibilityinputlabels(_:)-60chm │ │ └── index.html │ ├── accessibilityinputlabels(_:)-7wxqa │ │ └── index.html │ ├── accessibilityinputlabels(_:)-81kd2 │ │ └── index.html │ ├── accessibilityinputlabels(_:isenabled:)-8m7i7 │ │ └── index.html │ ├── accessibilityinputlabels(_:isenabled:)-98sjn │ │ └── index.html │ ├── accessibilityinputlabels(_:isenabled:)-zkk8 │ │ └── index.html │ ├── accessibilitylabel(_:)-376k8 │ │ └── index.html │ ├── accessibilitylabel(_:)-4sfr9 │ │ └── index.html │ ├── accessibilitylabel(_:)-nip8 │ │ └── index.html │ ├── accessibilitylabel(_:isenabled:)-18ayj │ │ └── index.html │ ├── accessibilitylabel(_:isenabled:)-1ds9v │ │ └── index.html │ ├── accessibilitylabel(_:isenabled:)-1tjk3 │ │ └── index.html │ ├── accessibilitylabel(content:) │ │ └── index.html │ ├── accessibilitylabeledpair(role:id:in:) │ │ └── index.html │ ├── accessibilitylinkedgroup(id:in:) │ │ └── index.html │ ├── accessibilityremovetraits(_:) │ │ └── index.html │ ├── accessibilityrepresentation(representation:) │ │ └── index.html │ ├── accessibilityrespondstouserinteraction(_:) │ │ └── index.html │ ├── accessibilityrespondstouserinteraction(_:isenabled:) │ │ └── index.html │ ├── accessibilityrotor(_:entries:)-3rzfq │ │ └── index.html │ ├── accessibilityrotor(_:entries:)-4j3q3 │ │ └── index.html │ ├── accessibilityrotor(_:entries:)-6ner6 │ │ └── index.html │ ├── accessibilityrotor(_:entries:)-emku │ │ └── index.html │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-2okk1 │ │ └── index.html │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-3g5ed │ │ └── index.html │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-4bkdf │ │ └── index.html │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-608d8 │ │ └── index.html │ ├── accessibilityrotor(_:entries:entrylabel:)-1zw8g │ │ └── index.html │ ├── accessibilityrotor(_:entries:entrylabel:)-3augi │ │ └── index.html │ ├── accessibilityrotor(_:entries:entrylabel:)-4a6ou │ │ └── index.html │ ├── accessibilityrotor(_:entries:entrylabel:)-92rj7 │ │ └── index.html │ ├── accessibilityrotor(_:textranges:)-3o5xg │ │ └── index.html │ ├── accessibilityrotor(_:textranges:)-6j44n │ │ └── index.html │ ├── accessibilityrotor(_:textranges:)-86wjz │ │ └── index.html │ ├── accessibilityrotor(_:textranges:)-g48n │ │ └── index.html │ ├── accessibilityrotorentry(id:in:) │ │ └── index.html │ ├── accessibilityscrollaction(_:) │ │ └── index.html │ ├── accessibilityshowslargecontentviewer() │ │ └── index.html │ ├── accessibilityshowslargecontentviewer(_:) │ │ └── index.html │ ├── accessibilitysortpriority(_:) │ │ └── index.html │ ├── accessibilitytextcontenttype(_:) │ │ └── index.html │ ├── accessibilityvalue(_:)-5bawr │ │ └── index.html │ ├── accessibilityvalue(_:)-6yy0h │ │ └── index.html │ ├── accessibilityvalue(_:)-7uhjl │ │ └── index.html │ ├── accessibilityvalue(_:isenabled:)-3mh0n │ │ └── index.html │ ├── accessibilityvalue(_:isenabled:)-44azv │ │ └── index.html │ ├── accessibilityvalue(_:isenabled:)-5kfsz │ │ └── index.html │ ├── accessibilityzoomaction(_:) │ │ └── index.html │ ├── actionsheet(ispresented:content:) │ │ └── index.html │ ├── actionsheet(item:content:) │ │ └── index.html │ ├── alert(_:ispresented:actions:)-5cxhw │ │ └── index.html │ ├── alert(_:ispresented:actions:)-5g4jp │ │ └── index.html │ ├── alert(_:ispresented:actions:)-5x71w │ │ └── index.html │ ├── alert(_:ispresented:actions:message:)-3n79t │ │ └── index.html │ ├── alert(_:ispresented:actions:message:)-68ajq │ │ └── index.html │ ├── alert(_:ispresented:actions:message:)-8y56t │ │ └── index.html │ ├── alert(_:ispresented:presenting:actions:)-1zxxk │ │ └── index.html │ ├── alert(_:ispresented:presenting:actions:)-3ibbb │ │ └── index.html │ ├── alert(_:ispresented:presenting:actions:)-8wjy3 │ │ └── index.html │ ├── alert(_:ispresented:presenting:actions:message:)-3hulb │ │ └── index.html │ ├── alert(_:ispresented:presenting:actions:message:)-63roi │ │ └── index.html │ ├── alert(_:ispresented:presenting:actions:message:)-6dn1i │ │ └── index.html │ ├── alert(ispresented:content:) │ │ └── index.html │ ├── alert(ispresented:error:actions:) │ │ └── index.html │ ├── alert(ispresented:error:actions:message:) │ │ └── index.html │ ├── alert(item:content:) │ │ └── index.html │ ├── alignmentguide(_:computevalue:)-1mw4k │ │ └── index.html │ ├── alignmentguide(_:computevalue:)-pggy │ │ └── index.html │ ├── alloweddynamicrange(_:) │ │ └── index.html │ ├── allowshittesting(_:) │ │ └── index.html │ ├── allowstightening(_:) │ │ └── index.html │ ├── allowswindowactivationevents(_:) │ │ └── index.html │ ├── anchorpreference(key:value:transform:) │ │ └── index.html │ ├── animation(_:) │ │ └── index.html │ ├── animation(_:body:) │ │ └── index.html │ ├── animation(_:value:) │ │ └── index.html │ ├── aspectratio(_:contentmode:)-9bbsn │ │ └── index.html │ ├── aspectratio(_:contentmode:)-9t2m9 │ │ └── index.html │ ├── autocapitalization(_:) │ │ └── index.html │ ├── autocorrectiondisabled(_:) │ │ └── index.html │ ├── background(_:alignment:) │ │ └── index.html │ ├── background(_:ignoressafeareaedges:) │ │ └── index.html │ ├── background(_:in:fillstyle:)-30q06 │ │ └── index.html │ ├── background(_:in:fillstyle:)-w3o2 │ │ └── index.html │ ├── background(alignment:content:) │ │ └── index.html │ ├── background(ignoressafeareaedges:) │ │ └── index.html │ ├── background(in:fillstyle:)-3h96i │ │ └── index.html │ ├── background(in:fillstyle:)-9xp4p │ │ └── index.html │ ├── backgroundpreferencevalue(_:_:) │ │ └── index.html │ ├── backgroundpreferencevalue(_:alignment:_:) │ │ └── index.html │ ├── backgroundstyle(_:) │ │ └── index.html │ ├── badge(_:)-2xl3n │ │ └── index.html │ ├── badge(_:)-5c9yw │ │ └── index.html │ ├── badge(_:)-9dwxp │ │ └── index.html │ ├── badge(_:)-d7p6 │ │ └── index.html │ ├── badgeprominence(_:) │ │ └── index.html │ ├── baselineoffset(_:) │ │ └── index.html │ ├── blendmode(_:) │ │ └── index.html │ ├── blur(radius:opaque:) │ │ └── index.html │ ├── body │ │ └── index.html │ ├── bold(_:) │ │ └── index.html │ ├── border(_:width:) │ │ └── index.html │ ├── brightness(_:) │ │ └── index.html │ ├── buttonbordershape(_:) │ │ └── index.html │ ├── buttonrepeatbehavior(_:) │ │ └── index.html │ ├── buttonstyle(_:)-77tpu │ │ └── index.html │ ├── buttonstyle(_:)-9bqbx │ │ └── index.html │ ├── clipped(antialiased:) │ │ └── index.html │ ├── clipshape(_:style:) │ │ └── index.html │ ├── coloreffect(_:isenabled:) │ │ └── index.html │ ├── colorinvert() │ │ └── index.html │ ├── colormultiply(_:) │ │ └── index.html │ ├── colorscheme(_:) │ │ └── index.html │ ├── compositinggroup() │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-2ea3e │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-6c8bc │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-6ynpa │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-502ol │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-64k3k │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-7xxkq │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-1e7kg │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-49qz4 │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-64azk │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-2wn4l │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-4useu │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-6tv6 │ │ └── index.html │ ├── containerbackground(_:for:) │ │ └── index.html │ ├── containerbackground(for:alignment:content:) │ │ └── index.html │ ├── containerrelativeframe(_:alignment:) │ │ └── index.html │ ├── containerrelativeframe(_:alignment:_:) │ │ └── index.html │ ├── containerrelativeframe(_:count:span:spacing:alignment:) │ │ └── index.html │ ├── containershape(_:) │ │ └── index.html │ ├── containervalue(_:_:) │ │ └── index.html │ ├── contentmargins(_:_:for:)-3fgqv │ │ └── index.html │ ├── contentmargins(_:_:for:)-8qzjs │ │ └── index.html │ ├── contentmargins(_:for:) │ │ └── index.html │ ├── contentshape(_:_:eofill:) │ │ └── index.html │ ├── contentshape(_:eofill:) │ │ └── index.html │ ├── contenttransition(_:) │ │ └── index.html │ ├── contextmenu(_:) │ │ └── index.html │ ├── contextmenu(forselectiontype:menu:primaryaction:) │ │ └── index.html │ ├── contextmenu(menuitems:) │ │ └── index.html │ ├── contextmenu(menuitems:preview:) │ │ └── index.html │ ├── contrast(_:) │ │ └── index.html │ ├── controlgroupstyle(_:) │ │ └── index.html │ ├── controlsize(_:) │ │ └── index.html │ ├── coordinatespace(_:) │ │ └── index.html │ ├── coordinatespace(name:) │ │ └── index.html │ ├── cornerradius(_:antialiased:) │ │ └── index.html │ ├── datepickerstyle(_:) │ │ └── index.html │ ├── defaultadaptabletabbarplacement(_:) │ │ └── index.html │ ├── defaultappstorage(_:) │ │ └── index.html │ ├── defaultfocus(_:_:priority:) │ │ └── index.html │ ├── defaulthovereffect(_:)-3rw2c │ │ └── index.html │ ├── defaulthovereffect(_:)-u9mx │ │ └── index.html │ ├── defaultscrollanchor(_:) │ │ └── index.html │ ├── defaultscrollanchor(_:for:) │ │ └── index.html │ ├── deferssystemgestures(on:) │ │ └── index.html │ ├── deletedisabled(_:) │ │ └── index.html │ ├── dialogicon(_:) │ │ └── index.html │ ├── dialogsuppressiontoggle(_:issuppressed:)-11gd4 │ │ └── index.html │ ├── dialogsuppressiontoggle(_:issuppressed:)-69h1a │ │ └── index.html │ ├── dialogsuppressiontoggle(_:issuppressed:)-g696 │ │ └── index.html │ ├── dialogsuppressiontoggle(issuppressed:) │ │ └── index.html │ ├── disableautocorrection(_:) │ │ └── index.html │ ├── disabled(_:) │ │ └── index.html │ ├── disclosuregroupstyle(_:) │ │ └── index.html │ ├── distortioneffect(_:maxsampleoffset:isenabled:) │ │ └── index.html │ ├── documentbrowsercontextmenu(_:) │ │ └── index.html │ ├── draggable(_:) │ │ └── index.html │ ├── draggable(_:preview:) │ │ └── index.html │ ├── drawinggroup(opaque:colormode:) │ │ └── index.html │ ├── dropdestination(for:action:istargeted:) │ │ └── index.html │ ├── dynamictypesize(_:) │ │ └── index.html │ ├── edgesignoringsafearea(_:) │ │ └── index.html │ ├── environment(_:) │ │ └── index.html │ ├── environment(_:_:) │ │ └── index.html │ ├── environmentobject(_:) │ │ └── index.html │ ├── filedialogbrowseroptions(_:) │ │ └── index.html │ ├── filedialogconfirmationlabel(_:)-266sg │ │ └── index.html │ ├── filedialogconfirmationlabel(_:)-5olqr │ │ └── index.html │ ├── filedialogconfirmationlabel(_:)-8to91 │ │ └── index.html │ ├── filedialogcustomizationid(_:) │ │ └── index.html │ ├── filedialogdefaultdirectory(_:) │ │ └── index.html │ ├── filedialogimportsunresolvedaliases(_:) │ │ └── index.html │ ├── filedialogmessage(_:)-18g7x │ │ └── index.html │ ├── filedialogmessage(_:)-3yejc │ │ └── index.html │ ├── filedialogmessage(_:)-gdly │ │ └── index.html │ ├── filedialogurlenabled(_:) │ │ └── index.html │ ├── fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-39w0o │ │ └── index.html │ ├── fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-8l2nu │ │ └── index.html │ ├── fileexporter(ispresented:document:contenttypes:defaultfilename:oncompletion:oncancellation:)-2k1ui │ │ └── index.html │ ├── fileexporter(ispresented:document:contenttypes:defaultfilename:oncompletion:oncancellation:)-3nk87 │ │ └── index.html │ ├── fileexporter(ispresented:documents:contenttype:oncompletion:)-1xy8x │ │ └── index.html │ ├── fileexporter(ispresented:documents:contenttype:oncompletion:)-9i0pu │ │ └── index.html │ ├── fileexporter(ispresented:documents:contenttypes:oncompletion:oncancellation:)-7qzi7 │ │ └── index.html │ ├── fileexporter(ispresented:documents:contenttypes:oncompletion:oncancellation:)-e61u │ │ └── index.html │ ├── fileexporter(ispresented:item:contenttypes:defaultfilename:oncompletion:oncancellation:) │ │ └── index.html │ ├── fileexporter(ispresented:items:contenttypes:oncompletion:oncancellation:) │ │ └── index.html │ ├── fileexporterfilenamelabel(_:)-5xe1p │ │ └── index.html │ ├── fileexporterfilenamelabel(_:)-gixk │ │ └── index.html │ ├── fileexporterfilenamelabel(_:)-w5ba │ │ └── index.html │ ├── fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:) │ │ └── index.html │ ├── fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:oncancellation:) │ │ └── index.html │ ├── fileimporter(ispresented:allowedcontenttypes:oncompletion:) │ │ └── index.html │ ├── filemover(ispresented:file:oncompletion:) │ │ └── index.html │ ├── filemover(ispresented:file:oncompletion:oncancellation:) │ │ └── index.html │ ├── filemover(ispresented:files:oncompletion:) │ │ └── index.html │ ├── filemover(ispresented:files:oncompletion:oncancellation:) │ │ └── index.html │ ├── finddisabled(_:) │ │ └── index.html │ ├── findnavigator(ispresented:) │ │ └── index.html │ ├── fixedsize() │ │ └── index.html │ ├── fixedsize(horizontal:vertical:) │ │ └── index.html │ ├── flipsforrighttoleftlayoutdirection(_:) │ │ └── index.html │ ├── focusable(_:) │ │ └── index.html │ ├── focusable(_:interactions:) │ │ └── index.html │ ├── focused(_:) │ │ └── index.html │ ├── focused(_:equals:) │ │ └── index.html │ ├── focusedobject(_:)-68qa6 │ │ └── index.html │ ├── focusedobject(_:)-99gnm │ │ └── index.html │ ├── focusedsceneobject(_:)-5giqk │ │ └── index.html │ ├── focusedsceneobject(_:)-9tub4 │ │ └── index.html │ ├── focusedscenevalue(_:) │ │ └── index.html │ ├── focusedscenevalue(_:_:)-5zd2c │ │ └── index.html │ ├── focusedscenevalue(_:_:)-6rcvy │ │ └── index.html │ ├── focusedvalue(_:) │ │ └── index.html │ ├── focusedvalue(_:_:)-1gv3x │ │ └── index.html │ ├── focusedvalue(_:_:)-7zbaf │ │ └── index.html │ ├── focuseffectdisabled(_:) │ │ └── index.html │ ├── font(_:) │ │ └── index.html │ ├── fontdesign(_:) │ │ └── index.html │ ├── fontweight(_:) │ │ └── index.html │ ├── fontwidth(_:) │ │ └── index.html │ ├── foregroundcolor(_:) │ │ └── index.html │ ├── foregroundstyle(_:) │ │ └── index.html │ ├── foregroundstyle(_:_:) │ │ └── index.html │ ├── foregroundstyle(_:_:_:) │ │ └── index.html │ ├── formstyle(_:) │ │ └── index.html │ ├── frame() │ │ └── index.html │ ├── frame(minwidth:idealwidth:maxwidth:minheight:idealheight:maxheight:alignment:) │ │ └── index.html │ ├── frame(width:height:alignment:) │ │ └── index.html │ ├── fullscreencover(ispresented:ondismiss:content:) │ │ └── index.html │ ├── fullscreencover(item:ondismiss:content:) │ │ └── index.html │ ├── gaugestyle(_:) │ │ └── index.html │ ├── geometrygroup() │ │ └── index.html │ ├── gesture(_:) │ │ └── index.html │ ├── gesture(_:including:) │ │ └── index.html │ ├── gesture(_:isenabled:) │ │ └── index.html │ ├── gesture(_:name:isenabled:) │ │ └── index.html │ ├── grayscale(_:) │ │ └── index.html │ ├── gridcellanchor(_:) │ │ └── index.html │ ├── gridcellcolumns(_:) │ │ └── index.html │ ├── gridcellunsizedaxes(_:) │ │ └── index.html │ ├── gridcolumnalignment(_:) │ │ └── index.html │ ├── groupboxstyle(_:) │ │ └── index.html │ ├── handgestureshortcut(_:isenabled:) │ │ └── index.html │ ├── handlesexternalevents(preferring:allowing:) │ │ └── index.html │ ├── handlingstacktabbartoolbarbehavior(inputnavigationnodetype:) │ │ └── index.html │ ├── headerprominence(_:) │ │ └── index.html │ ├── help(_:)-1v9rl │ │ └── index.html │ ├── help(_:)-20li4 │ │ └── index.html │ ├── help(_:)-8q97c │ │ └── index.html │ ├── hidden() │ │ └── index.html │ ├── highprioritygesture(_:including:) │ │ └── index.html │ ├── highprioritygesture(_:isenabled:) │ │ └── index.html │ ├── highprioritygesture(_:name:isenabled:) │ │ └── index.html │ ├── hovereffect(_:) │ │ └── index.html │ ├── hovereffect(_:isenabled:)-1aw07 │ │ └── index.html │ ├── hovereffect(_:isenabled:)-6fuks │ │ └── index.html │ ├── hovereffectdisabled(_:) │ │ └── index.html │ ├── huerotation(_:) │ │ └── index.html │ ├── id(_:) │ │ └── index.html │ ├── ignoressafearea(_:edges:) │ │ └── index.html │ ├── imagescale(_:) │ │ └── index.html │ ├── index.html │ ├── indexviewstyle(_:) │ │ └── index.html │ ├── init() │ │ └── index.html │ ├── inspector(ispresented:content:) │ │ └── index.html │ ├── inspectorcolumnwidth(_:) │ │ └── index.html │ ├── inspectorcolumnwidth(min:ideal:max:) │ │ └── index.html │ ├── interactionactivitytrackingtag(_:) │ │ └── index.html │ ├── interactivedismissdisabled(_:) │ │ └── index.html │ ├── invalidatablecontent(_:) │ │ └── index.html │ ├── italic(_:) │ │ └── index.html │ ├── itemprovider(_:) │ │ └── index.html │ ├── kerning(_:) │ │ └── index.html │ ├── keyboardshortcut(_:)-8qtid │ │ └── index.html │ ├── keyboardshortcut(_:)-9q9rt │ │ └── index.html │ ├── keyboardshortcut(_:modifiers:) │ │ └── index.html │ ├── keyboardshortcut(_:modifiers:localization:) │ │ └── index.html │ ├── keyboardtype(_:) │ │ └── index.html │ ├── keyframeanimator(initialvalue:repeating:content:keyframes:) │ │ └── index.html │ ├── keyframeanimator(initialvalue:trigger:content:keyframes:) │ │ └── index.html │ ├── labeledcontentstyle(_:) │ │ └── index.html │ ├── labelshidden() │ │ └── index.html │ ├── labelstyle(_:) │ │ └── index.html │ ├── labelsvisibility(_:) │ │ └── index.html │ ├── layereffect(_:maxsampleoffset:isenabled:) │ │ └── index.html │ ├── layoutdirectionbehavior(_:) │ │ └── index.html │ ├── layoutpriority(_:) │ │ └── index.html │ ├── layoutvalue(key:value:) │ │ └── index.html │ ├── linelimit(_:)-2dd1w │ │ └── index.html │ ├── linelimit(_:)-51r19 │ │ └── index.html │ ├── linelimit(_:)-6o3qz │ │ └── index.html │ ├── linelimit(_:)-h3ag │ │ └── index.html │ ├── linelimit(_:reservesspace:) │ │ └── index.html │ ├── linespacing(_:) │ │ └── index.html │ ├── listitemtint(_:)-39hrj │ │ └── index.html │ ├── listitemtint(_:)-54nl2 │ │ └── index.html │ ├── listrowbackground(_:) │ │ └── index.html │ ├── listrowinsets(_:) │ │ └── index.html │ ├── listrowseparator(_:edges:) │ │ └── index.html │ ├── listrowseparatortint(_:edges:) │ │ └── index.html │ ├── listrowspacing(_:) │ │ └── index.html │ ├── listsectionseparator(_:edges:) │ │ └── index.html │ ├── listsectionseparatortint(_:edges:) │ │ └── index.html │ ├── listsectionspacing(_:)-18d2j │ │ └── index.html │ ├── listsectionspacing(_:)-9pu7p │ │ └── index.html │ ├── liststyle(_:) │ │ └── index.html │ ├── luminancetoalpha() │ │ └── index.html │ ├── mask(_:) │ │ └── index.html │ ├── mask(alignment:_:) │ │ └── index.html │ ├── matchedgeometryeffect(id:in:properties:anchor:issource:) │ │ └── index.html │ ├── matchedtransitionsource(id:in:) │ │ └── index.html │ ├── matchedtransitionsource(id:in:configuration:) │ │ └── index.html │ ├── materialactiveappearance(_:) │ │ └── index.html │ ├── menuactiondismissbehavior(_:) │ │ └── index.html │ ├── menuindicator(_:) │ │ └── index.html │ ├── menuorder(_:) │ │ └── index.html │ ├── menustyle(_:) │ │ └── index.html │ ├── minimumscalefactor(_:) │ │ └── index.html │ ├── modifier(_:) │ │ └── index.html │ ├── monospaced(_:) │ │ └── index.html │ ├── monospaceddigit() │ │ └── index.html │ ├── movedisabled(_:) │ │ └── index.html │ ├── multilinetextalignment(_:) │ │ └── index.html │ ├── navigationbarbackbuttonhidden(_:) │ │ └── index.html │ ├── navigationbarhidden(_:) │ │ └── index.html │ ├── navigationbaritems(leading:) │ │ └── index.html │ ├── navigationbaritems(leading:trailing:) │ │ └── index.html │ ├── navigationbaritems(trailing:) │ │ └── index.html │ ├── navigationbartitle(_:)-1mu4 │ │ └── index.html │ ├── navigationbartitle(_:)-4kz9q │ │ └── index.html │ ├── navigationbartitle(_:)-96fyi │ │ └── index.html │ ├── navigationbartitle(_:displaymode:)-3bjqn │ │ └── index.html │ ├── navigationbartitle(_:displaymode:)-597vk │ │ └── index.html │ ├── navigationbartitle(_:displaymode:)-6cth │ │ └── index.html │ ├── navigationbartitledisplaymode(_:) │ │ └── index.html │ ├── navigationdestination(for:destination:) │ │ └── index.html │ ├── navigationdestination(ispresented:destination:) │ │ └── index.html │ ├── navigationdestination(item:destination:) │ │ └── index.html │ ├── navigationdocument(_:) │ │ └── index.html │ ├── navigationdocument(_:preview:)-1twtm │ │ └── index.html │ ├── navigationdocument(_:preview:)-3fcsv │ │ └── index.html │ ├── navigationdocument(_:preview:)-44617 │ │ └── index.html │ ├── navigationdocument(_:preview:)-477fu │ │ └── index.html │ ├── navigationenvironmenttriggerhandler(_:) │ │ └── index.html │ ├── navigationsplitviewcolumnwidth(_:) │ │ └── index.html │ ├── navigationsplitviewcolumnwidth(min:ideal:max:) │ │ └── index.html │ ├── navigationsplitviewstyle(_:) │ │ └── index.html │ ├── navigationtitle(_:)-15bit │ │ └── index.html │ ├── navigationtitle(_:)-2oadr │ │ └── index.html │ ├── navigationtitle(_:)-6pd4l │ │ └── index.html │ ├── navigationtitle(_:)-6q1t1 │ │ └── index.html │ ├── navigationtitle(_:)-8lqrk │ │ └── index.html │ ├── navigationtransition(_:) │ │ └── index.html │ ├── navigationviewstyle(_:) │ │ └── index.html │ ├── offset(_:) │ │ └── index.html │ ├── offset(x:y:) │ │ └── index.html │ ├── onappear(perform:) │ │ └── index.html │ ├── onchange(of:initial:_:)-1a9uk │ │ └── index.html │ ├── onchange(of:initial:_:)-t81i │ │ └── index.html │ ├── onchange(of:perform:) │ │ └── index.html │ ├── oncontinueuseractivity(_:perform:) │ │ └── index.html │ ├── oncontinuoushover(coordinatespace:perform:) │ │ └── index.html │ ├── ondisappear(perform:) │ │ └── index.html │ ├── ondrag(_:) │ │ └── index.html │ ├── ondrag(_:preview:) │ │ └── index.html │ ├── ondrop(of:delegate:)-23gx7 │ │ └── index.html │ ├── ondrop(of:delegate:)-42sk │ │ └── index.html │ ├── ondrop(of:istargeted:perform:)-19y3f │ │ └── index.html │ ├── ondrop(of:istargeted:perform:)-2ysst │ │ └── index.html │ ├── ondrop(of:istargeted:perform:)-4q93y │ │ └── index.html │ ├── ondrop(of:istargeted:perform:)-6abth │ │ └── index.html │ ├── ongeometrychange(for:of:action:)-9m27v │ │ └── index.html │ ├── ongeometrychange(for:of:action:)-9yt5c │ │ └── index.html │ ├── onhover(perform:) │ │ └── index.html │ ├── onkeypress(_:action:) │ │ └── index.html │ ├── onkeypress(_:phases:action:) │ │ └── index.html │ ├── onkeypress(characters:phases:action:) │ │ └── index.html │ ├── onkeypress(keys:phases:action:) │ │ └── index.html │ ├── onkeypress(phases:action:) │ │ └── index.html │ ├── onlongpressgesture(minimumduration:maximumdistance:perform:onpressingchanged:) │ │ └── index.html │ ├── onlongpressgesture(minimumduration:maximumdistance:pressing:perform:) │ │ └── index.html │ ├── onlongpressgesture(minimumduration:perform:onpressingchanged:) │ │ └── index.html │ ├── onlongpressgesture(minimumduration:pressing:perform:) │ │ └── index.html │ ├── onopenurl(perform:) │ │ └── index.html │ ├── onpencildoubletap(perform:) │ │ └── index.html │ ├── onpencilsqueeze(perform:) │ │ └── index.html │ ├── onpreferencechange(_:perform:) │ │ └── index.html │ ├── onreceive(_:perform:) │ │ └── index.html │ ├── onscrollgeometrychange(for:of:action:) │ │ └── index.html │ ├── onscrollphasechange(_:)-5bsr0 │ │ └── index.html │ ├── onscrollphasechange(_:)-9657z │ │ └── index.html │ ├── onscrolltargetvisibilitychange(idtype:threshold:_:) │ │ └── index.html │ ├── onscrollvisibilitychange(threshold:_:) │ │ └── index.html │ ├── onsubmit(of:_:) │ │ └── index.html │ ├── ontapgesture(count:coordinatespace:perform:) │ │ └── index.html │ ├── ontapgesture(count:perform:) │ │ └── index.html │ ├── opacity(_:) │ │ └── index.html │ ├── overlay(_:alignment:) │ │ └── index.html │ ├── overlay(_:ignoressafeareaedges:) │ │ └── index.html │ ├── overlay(_:in:fillstyle:) │ │ └── index.html │ ├── overlay(alignment:content:) │ │ └── index.html │ ├── overlaypreferencevalue(_:_:) │ │ └── index.html │ ├── overlaypreferencevalue(_:alignment:_:) │ │ └── index.html │ ├── padding(_:)-6i9en │ │ └── index.html │ ├── padding(_:)-8c9g2 │ │ └── index.html │ ├── padding(_:_:) │ │ └── index.html │ ├── paletteselectioneffect(_:) │ │ └── index.html │ ├── persistentsystemoverlays(_:) │ │ └── index.html │ ├── phaseanimator(_:content:animation:) │ │ └── index.html │ ├── phaseanimator(_:trigger:content:animation:) │ │ └── index.html │ ├── pickerstyle(_:) │ │ └── index.html │ ├── popover(ispresented:attachmentanchor:arrowedge:content:) │ │ └── index.html │ ├── popover(item:attachmentanchor:arrowedge:content:) │ │ └── index.html │ ├── position(_:) │ │ └── index.html │ ├── position(x:y:) │ │ └── index.html │ ├── preference(key:value:) │ │ └── index.html │ ├── preferredcolorscheme(_:) │ │ └── index.html │ ├── presentationbackground(_:) │ │ └── index.html │ ├── presentationbackground(alignment:content:) │ │ └── index.html │ ├── presentationbackgroundinteraction(_:) │ │ └── index.html │ ├── presentationcompactadaptation(_:) │ │ └── index.html │ ├── presentationcompactadaptation(horizontal:vertical:) │ │ └── index.html │ ├── presentationcontentinteraction(_:) │ │ └── index.html │ ├── presentationcornerradius(_:) │ │ └── index.html │ ├── presentationdetents(_:) │ │ └── index.html │ ├── presentationdetents(_:selection:) │ │ └── index.html │ ├── presentationdragindicator(_:) │ │ └── index.html │ ├── presentationsizing(_:) │ │ └── index.html │ ├── presentingnavigationsource(id:) │ │ └── index.html │ ├── previewcontext(_:) │ │ └── index.html │ ├── previewdevice(_:) │ │ └── index.html │ ├── previewdisplayname(_:) │ │ └── index.html │ ├── previewinterfaceorientation(_:) │ │ └── index.html │ ├── previewlayout(_:) │ │ └── index.html │ ├── privacysensitive(_:) │ │ └── index.html │ ├── progressviewstyle(_:) │ │ └── index.html │ ├── projectioneffect(_:) │ │ └── index.html │ ├── redacted(reason:) │ │ └── index.html │ ├── refreshable(action:) │ │ └── index.html │ ├── registercustompresentablenavigationnodes(_:) │ │ └── index.html │ ├── renameaction(_:)-4ja36 │ │ └── index.html │ ├── renameaction(_:)-52kg7 │ │ └── index.html │ ├── replacedisabled(_:) │ │ └── index.html │ ├── rotation3deffect(_:axis:anchor:anchorz:perspective:) │ │ └── index.html │ ├── rotationeffect(_:anchor:) │ │ └── index.html │ ├── safeareainset(edge:alignment:spacing:content:)-33ral │ │ └── index.html │ ├── safeareainset(edge:alignment:spacing:content:)-8vff2 │ │ └── index.html │ ├── safeareapadding(_:)-643ht │ │ └── index.html │ ├── safeareapadding(_:)-7ftrx │ │ └── index.html │ ├── safeareapadding(_:_:) │ │ └── index.html │ ├── saturation(_:) │ │ └── index.html │ ├── scaledtofill() │ │ └── index.html │ ├── scaledtofit() │ │ └── index.html │ ├── scaleeffect(_:anchor:)-6nl7j │ │ └── index.html │ ├── scaleeffect(_:anchor:)-e6ho │ │ └── index.html │ ├── scaleeffect(x:y:anchor:) │ │ └── index.html │ ├── scenepadding(_:) │ │ └── index.html │ ├── scenepadding(_:edges:) │ │ └── index.html │ ├── scrollbouncebehavior(_:axes:) │ │ └── index.html │ ├── scrollclipdisabled(_:) │ │ └── index.html │ ├── scrollcontentbackground(_:) │ │ └── index.html │ ├── scrolldisabled(_:) │ │ └── index.html │ ├── scrolldismisseskeyboard(_:) │ │ └── index.html │ ├── scrollindicators(_:axes:) │ │ └── index.html │ ├── scrollindicatorsflash(onappear:) │ │ └── index.html │ ├── scrollindicatorsflash(trigger:) │ │ └── index.html │ ├── scrollinputbehavior(_:for:) │ │ └── index.html │ ├── scrollposition(_:anchor:) │ │ └── index.html │ ├── scrollposition(id:anchor:) │ │ └── index.html │ ├── scrolltargetbehavior(_:) │ │ └── index.html │ ├── scrolltargetlayout(isenabled:) │ │ └── index.html │ ├── scrolltransition(_:axis:transition:) │ │ └── index.html │ ├── scrolltransition(topleading:bottomtrailing:axis:transition:) │ │ └── index.html │ ├── searchable(text:editabletokens:ispresented:placement:prompt:token:)-5cxx5 │ │ └── index.html │ ├── searchable(text:editabletokens:ispresented:placement:prompt:token:)-6tl06 │ │ └── index.html │ ├── searchable(text:editabletokens:ispresented:placement:prompt:token:)-6xh01 │ │ └── index.html │ ├── searchable(text:editabletokens:placement:prompt:token:)-11gn7 │ │ └── index.html │ ├── searchable(text:editabletokens:placement:prompt:token:)-1su1k │ │ └── index.html │ ├── searchable(text:editabletokens:placement:prompt:token:)-3i6c8 │ │ └── index.html │ ├── searchable(text:ispresented:placement:prompt:)-1sg4t │ │ └── index.html │ ├── searchable(text:ispresented:placement:prompt:)-5z31t │ │ └── index.html │ ├── searchable(text:ispresented:placement:prompt:)-8vja2 │ │ └── index.html │ ├── searchable(text:placement:prompt:)-4fvpq │ │ └── index.html │ ├── searchable(text:placement:prompt:)-6dauj │ │ └── index.html │ ├── searchable(text:placement:prompt:)-88al1 │ │ └── index.html │ ├── searchable(text:placement:prompt:suggestions:)-1az5n │ │ └── index.html │ ├── searchable(text:placement:prompt:suggestions:)-9914m │ │ └── index.html │ ├── searchable(text:placement:prompt:suggestions:)-sxn6 │ │ └── index.html │ ├── searchable(text:tokens:ispresented:placement:prompt:token:)-1nk2y │ │ └── index.html │ ├── searchable(text:tokens:ispresented:placement:prompt:token:)-2d1o8 │ │ └── index.html │ ├── searchable(text:tokens:ispresented:placement:prompt:token:)-mlzs │ │ └── index.html │ ├── searchable(text:tokens:placement:prompt:token:)-161g2 │ │ └── index.html │ ├── searchable(text:tokens:placement:prompt:token:)-3ylms │ │ └── index.html │ ├── searchable(text:tokens:placement:prompt:token:)-4esvk │ │ └── index.html │ ├── searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-6l97 │ │ └── index.html │ ├── searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-94wpj │ │ └── index.html │ ├── searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-pb4 │ │ └── index.html │ ├── searchable(text:tokens:suggestedtokens:placement:prompt:token:)-13fei │ │ └── index.html │ ├── searchable(text:tokens:suggestedtokens:placement:prompt:token:)-61o3o │ │ └── index.html │ ├── searchable(text:tokens:suggestedtokens:placement:prompt:token:)-xt7g │ │ └── index.html │ ├── searchcompletion(_:) │ │ └── index.html │ ├── searchdictationbehavior(_:) │ │ └── index.html │ ├── searchfocused(_:) │ │ └── index.html │ ├── searchfocused(_:equals:) │ │ └── index.html │ ├── searchpresentationtoolbarbehavior(_:) │ │ └── index.html │ ├── searchscopes(_:activation:_:) │ │ └── index.html │ ├── searchscopes(_:scopes:) │ │ └── index.html │ ├── searchsuggestions(_:) │ │ └── index.html │ ├── searchsuggestions(_:for:) │ │ └── index.html │ ├── sectionactions(content:) │ │ └── index.html │ ├── selectiondisabled(_:) │ │ └── index.html │ ├── sensoryfeedback(_:trigger:) │ │ └── index.html │ ├── sensoryfeedback(_:trigger:condition:) │ │ └── index.html │ ├── sensoryfeedback(trigger:_:) │ │ └── index.html │ ├── shadow(color:radius:x:y:) │ │ └── index.html │ ├── sheet(ispresented:ondismiss:content:) │ │ └── index.html │ ├── sheet(item:ondismiss:content:) │ │ └── index.html │ ├── simultaneousgesture(_:including:) │ │ └── index.html │ ├── simultaneousgesture(_:isenabled:) │ │ └── index.html │ ├── simultaneousgesture(_:name:isenabled:) │ │ └── index.html │ ├── speechadjustedpitch(_:) │ │ └── index.html │ ├── speechalwaysincludespunctuation(_:) │ │ └── index.html │ ├── speechannouncementsqueued(_:) │ │ └── index.html │ ├── speechspellsoutcharacters(_:) │ │ └── index.html │ ├── springloadingbehavior(_:) │ │ └── index.html │ ├── statusbar(hidden:) │ │ └── index.html │ ├── statusbarhidden(_:) │ │ └── index.html │ ├── strikethrough(_:pattern:color:) │ │ └── index.html │ ├── submitlabel(_:) │ │ └── index.html │ ├── submitscope(_:) │ │ └── index.html │ ├── swipeactions(edge:allowsfullswipe:content:) │ │ └── index.html │ ├── symboleffect(_:options:isactive:) │ │ └── index.html │ ├── symboleffect(_:options:value:) │ │ └── index.html │ ├── symboleffectsremoved(_:) │ │ └── index.html │ ├── symbolrenderingmode(_:) │ │ └── index.html │ ├── symbolvariant(_:) │ │ └── index.html │ ├── tabitem(_:) │ │ └── index.html │ ├── tablecolumnheaders(_:) │ │ └── index.html │ ├── tablestyle(_:) │ │ └── index.html │ ├── tabviewcustomization(_:) │ │ └── index.html │ ├── tabviewsidebarbottombar(content:) │ │ └── index.html │ ├── tabviewsidebarfooter(content:) │ │ └── index.html │ ├── tabviewsidebarheader(content:) │ │ └── index.html │ ├── tabviewstyle(_:) │ │ └── index.html │ ├── tag(_:includeoptional:) │ │ └── index.html │ ├── task(id:priority:_:) │ │ └── index.html │ ├── task(priority:_:) │ │ └── index.html │ ├── textcase(_:) │ │ └── index.html │ ├── textcontenttype(_:) │ │ └── index.html │ ├── texteditorstyle(_:) │ │ └── index.html │ ├── textfieldstyle(_:) │ │ └── index.html │ ├── textinputautocapitalization(_:) │ │ └── index.html │ ├── textrenderer(_:) │ │ └── index.html │ ├── textscale(_:isenabled:) │ │ └── index.html │ ├── textselection(_:) │ │ └── index.html │ ├── textselectionaffinity(_:) │ │ └── index.html │ ├── tint(_:) │ │ └── index.html │ ├── togglestyle(_:) │ │ └── index.html │ ├── toolbar(_:for:) │ │ └── index.html │ ├── toolbar(content:)-12hke │ │ └── index.html │ ├── toolbar(content:)-709fb │ │ └── index.html │ ├── toolbar(id:content:) │ │ └── index.html │ ├── toolbar(removing:) │ │ └── index.html │ ├── toolbarbackground(_:for:) │ │ └── index.html │ ├── toolbarbackgroundvisibility(_:for:) │ │ └── index.html │ ├── toolbarcolorscheme(_:for:) │ │ └── index.html │ ├── toolbarforegroundstyle(_:for:) │ │ └── index.html │ ├── toolbarrole(_:) │ │ └── index.html │ ├── toolbartitledisplaymode(_:) │ │ └── index.html │ ├── toolbartitlemenu(content:) │ │ └── index.html │ ├── toolbarvisibility(_:for:) │ │ └── index.html │ ├── tracking(_:) │ │ └── index.html │ ├── transaction(_:) │ │ └── index.html │ ├── transaction(_:body:) │ │ └── index.html │ ├── transaction(value:_:) │ │ └── index.html │ ├── transformanchorpreference(key:value:transform:) │ │ └── index.html │ ├── transformeffect(_:) │ │ └── index.html │ ├── transformenvironment(_:transform:) │ │ └── index.html │ ├── transformpreference(_:_:) │ │ └── index.html │ ├── transition(_:) │ │ └── index.html │ ├── truncationmode(_:) │ │ └── index.html │ ├── typeselectequivalent(_:)-28l87 │ │ └── index.html │ ├── typeselectequivalent(_:)-4g4co │ │ └── index.html │ ├── typeselectequivalent(_:)-5afp6 │ │ └── index.html │ ├── typesettinglanguage(_:isenabled:)-3utyi │ │ └── index.html │ ├── typesettinglanguage(_:isenabled:)-7uj9c │ │ └── index.html │ ├── underline(_:pattern:color:) │ │ └── index.html │ ├── unredacted() │ │ └── index.html │ ├── useractivity(_:element:_:) │ │ └── index.html │ ├── useractivity(_:isactive:_:) │ │ └── index.html │ ├── view-implementations │ │ └── index.html │ ├── visualeffect(_:) │ │ └── index.html │ ├── windowtoolbarfullscreenvisibility(_:) │ │ └── index.html │ ├── writingtoolsbehavior(_:) │ │ └── index.html │ └── zindex(_:) │ │ └── index.html │ ├── stacksetrootnavigationcommand │ ├── canexecute(on:) │ │ └── index.html │ ├── execute(on:) │ │ └── index.html │ ├── index.html │ ├── init(rootnode:clear:animated:) │ │ └── index.html │ ├── navigationcommand-implementations │ │ └── index.html │ ├── perform(animated:action:) │ │ └── index.html │ └── stacksetroot(_:clear:animated:) │ │ └── index.html │ ├── stacktabbartoolbarbehavior │ ├── automatic │ │ └── index.html │ ├── hiddenwhennotroot(animated:) │ │ └── index.html │ └── index.html │ ├── swiftuicore │ ├── environmentvalues │ │ ├── index.html │ │ ├── navigationenvironmenttriggerhandler │ │ │ └── index.html │ │ ├── registeredcustompresentablenavigationnodes │ │ │ └── index.html │ │ └── stacknavigationnamespace │ │ │ └── index.html │ ├── index.html │ └── view │ │ ├── handlingstacktabbartoolbarbehavior(inputnavigationnodetype:) │ │ └── index.html │ │ ├── index.html │ │ ├── navigationenvironmenttriggerhandler(_:) │ │ └── index.html │ │ ├── presentingnavigationsource(id:) │ │ └── index.html │ │ └── registercustompresentablenavigationnodes(_:) │ │ └── index.html │ ├── switchednavigationnode() │ └── index.html │ ├── switchednavigationnode │ ├── body(for:) │ │ └── index.html │ ├── index.html │ ├── modifiedview │ │ └── index.html │ └── switchednode │ │ └── index.html │ ├── switchednavigationnodeview │ ├── accentcolor(_:) │ │ └── index.html │ ├── accessibility(activationpoint:)-2xe43 │ │ └── index.html │ ├── accessibility(activationpoint:)-ex1q │ │ └── index.html │ ├── accessibility(addtraits:) │ │ └── index.html │ ├── accessibility(hidden:) │ │ └── index.html │ ├── accessibility(hint:) │ │ └── index.html │ ├── accessibility(identifier:) │ │ └── index.html │ ├── accessibility(inputlabels:) │ │ └── index.html │ ├── accessibility(label:) │ │ └── index.html │ ├── accessibility(removetraits:) │ │ └── index.html │ ├── accessibility(selectionidentifier:) │ │ └── index.html │ ├── accessibility(sortpriority:) │ │ └── index.html │ ├── accessibility(value:) │ │ └── index.html │ ├── accessibilityaction(_:_:) │ │ └── index.html │ ├── accessibilityaction(action:label:) │ │ └── index.html │ ├── accessibilityaction(named:_:)-146yr │ │ └── index.html │ ├── accessibilityaction(named:_:)-3porq │ │ └── index.html │ ├── accessibilityaction(named:_:)-7zskl │ │ └── index.html │ ├── accessibilityactions(_:) │ │ └── index.html │ ├── accessibilityactions(category:_:) │ │ └── index.html │ ├── accessibilityactivationpoint(_:)-4zzqe │ │ └── index.html │ ├── accessibilityactivationpoint(_:)-547fz │ │ └── index.html │ ├── accessibilityactivationpoint(_:isenabled:)-478qa │ │ └── index.html │ ├── accessibilityactivationpoint(_:isenabled:)-5h2kz │ │ └── index.html │ ├── accessibilityaddtraits(_:) │ │ └── index.html │ ├── accessibilityadjustableaction(_:) │ │ └── index.html │ ├── accessibilitychartdescriptor(_:) │ │ └── index.html │ ├── accessibilitychildren(children:) │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-1ietl │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-4j1j9 │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-5qt3t │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-78ypb │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-8grbg │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-92dm4 │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-9ks12 │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-hasd │ │ └── index.html │ ├── accessibilitydirecttouch(_:options:) │ │ └── index.html │ ├── accessibilitydragpoint(_:description:)-1elj5 │ │ └── index.html │ ├── accessibilitydragpoint(_:description:)-26fia │ │ └── index.html │ ├── accessibilitydragpoint(_:description:)-5phv8 │ │ └── index.html │ ├── accessibilitydragpoint(_:description:isenabled:)-1h5wn │ │ └── index.html │ ├── accessibilitydragpoint(_:description:isenabled:)-27p9a │ │ └── index.html │ ├── accessibilitydragpoint(_:description:isenabled:)-3tac4 │ │ └── index.html │ ├── accessibilitydroppoint(_:description:)-2uu25 │ │ └── index.html │ ├── accessibilitydroppoint(_:description:)-5niji │ │ └── index.html │ ├── accessibilitydroppoint(_:description:)-71pvc │ │ └── index.html │ ├── accessibilitydroppoint(_:description:isenabled:)-10qmm │ │ └── index.html │ ├── accessibilitydroppoint(_:description:isenabled:)-4rave │ │ └── index.html │ ├── accessibilitydroppoint(_:description:isenabled:)-8di8r │ │ └── index.html │ ├── accessibilityelement(children:) │ │ └── index.html │ ├── accessibilityfocused(_:) │ │ └── index.html │ ├── accessibilityfocused(_:equals:) │ │ └── index.html │ ├── accessibilityheading(_:) │ │ └── index.html │ ├── accessibilityhidden(_:) │ │ └── index.html │ ├── accessibilityhidden(_:isenabled:) │ │ └── index.html │ ├── accessibilityhint(_:)-15owj │ │ └── index.html │ ├── accessibilityhint(_:)-608nl │ │ └── index.html │ ├── accessibilityhint(_:)-78x3q │ │ └── index.html │ ├── accessibilityhint(_:isenabled:)-3myvw │ │ └── index.html │ ├── accessibilityhint(_:isenabled:)-6hclz │ │ └── index.html │ ├── accessibilityhint(_:isenabled:)-86z0n │ │ └── index.html │ ├── accessibilityidentifier(_:) │ │ └── index.html │ ├── accessibilityidentifier(_:isenabled:) │ │ └── index.html │ ├── accessibilityignoresinvertcolors(_:) │ │ └── index.html │ ├── accessibilityinputlabels(_:)-2wwv7 │ │ └── index.html │ ├── accessibilityinputlabels(_:)-3mmj4 │ │ └── index.html │ ├── accessibilityinputlabels(_:)-96ghh │ │ └── index.html │ ├── accessibilityinputlabels(_:isenabled:)-1q8hn │ │ └── index.html │ ├── accessibilityinputlabels(_:isenabled:)-2bg3 │ │ └── index.html │ ├── accessibilityinputlabels(_:isenabled:)-5qx9f │ │ └── index.html │ ├── accessibilitylabel(_:)-6gme5 │ │ └── index.html │ ├── accessibilitylabel(_:)-8dd57 │ │ └── index.html │ ├── accessibilitylabel(_:)-9wt5 │ │ └── index.html │ ├── accessibilitylabel(_:isenabled:)-2dony │ │ └── index.html │ ├── accessibilitylabel(_:isenabled:)-6a8i7 │ │ └── index.html │ ├── accessibilitylabel(_:isenabled:)-7xm7t │ │ └── index.html │ ├── accessibilitylabel(content:) │ │ └── index.html │ ├── accessibilitylabeledpair(role:id:in:) │ │ └── index.html │ ├── accessibilitylinkedgroup(id:in:) │ │ └── index.html │ ├── accessibilityremovetraits(_:) │ │ └── index.html │ ├── accessibilityrepresentation(representation:) │ │ └── index.html │ ├── accessibilityrespondstouserinteraction(_:) │ │ └── index.html │ ├── accessibilityrespondstouserinteraction(_:isenabled:) │ │ └── index.html │ ├── accessibilityrotor(_:entries:)-25gjn │ │ └── index.html │ ├── accessibilityrotor(_:entries:)-33wj1 │ │ └── index.html │ ├── accessibilityrotor(_:entries:)-781vx │ │ └── index.html │ ├── accessibilityrotor(_:entries:)-7mxaa │ │ └── index.html │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-2z4ak │ │ └── index.html │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-5k9df │ │ └── index.html │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-6ip3w │ │ └── index.html │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-8dtv1 │ │ └── index.html │ ├── accessibilityrotor(_:entries:entrylabel:)-1arri │ │ └── index.html │ ├── accessibilityrotor(_:entries:entrylabel:)-3dbtc │ │ └── index.html │ ├── accessibilityrotor(_:entries:entrylabel:)-3nlmd │ │ └── index.html │ ├── accessibilityrotor(_:entries:entrylabel:)-7f456 │ │ └── index.html │ ├── accessibilityrotor(_:textranges:)-52bzr │ │ └── index.html │ ├── accessibilityrotor(_:textranges:)-9fc1e │ │ └── index.html │ ├── accessibilityrotor(_:textranges:)-9fvh0 │ │ └── index.html │ ├── accessibilityrotor(_:textranges:)-u3s0 │ │ └── index.html │ ├── accessibilityrotorentry(id:in:) │ │ └── index.html │ ├── accessibilityscrollaction(_:) │ │ └── index.html │ ├── accessibilityshowslargecontentviewer() │ │ └── index.html │ ├── accessibilityshowslargecontentviewer(_:) │ │ └── index.html │ ├── accessibilitysortpriority(_:) │ │ └── index.html │ ├── accessibilitytextcontenttype(_:) │ │ └── index.html │ ├── accessibilityvalue(_:)-3hd91 │ │ └── index.html │ ├── accessibilityvalue(_:)-68w1u │ │ └── index.html │ ├── accessibilityvalue(_:)-8s5e4 │ │ └── index.html │ ├── accessibilityvalue(_:isenabled:)-4a73r │ │ └── index.html │ ├── accessibilityvalue(_:isenabled:)-54c0o │ │ └── index.html │ ├── accessibilityvalue(_:isenabled:)-70o24 │ │ └── index.html │ ├── accessibilityzoomaction(_:) │ │ └── index.html │ ├── actionsheet(ispresented:content:) │ │ └── index.html │ ├── actionsheet(item:content:) │ │ └── index.html │ ├── alert(_:ispresented:actions:)-4t46v │ │ └── index.html │ ├── alert(_:ispresented:actions:)-8fc5y │ │ └── index.html │ ├── alert(_:ispresented:actions:)-8rskl │ │ └── index.html │ ├── alert(_:ispresented:actions:message:)-6qgjo │ │ └── index.html │ ├── alert(_:ispresented:actions:message:)-92gl7 │ │ └── index.html │ ├── alert(_:ispresented:actions:message:)-sa8p │ │ └── index.html │ ├── alert(_:ispresented:presenting:actions:)-84lzy │ │ └── index.html │ ├── alert(_:ispresented:presenting:actions:)-9lw6y │ │ └── index.html │ ├── alert(_:ispresented:presenting:actions:)-q4ks │ │ └── index.html │ ├── alert(_:ispresented:presenting:actions:message:)-3uw9b │ │ └── index.html │ ├── alert(_:ispresented:presenting:actions:message:)-4d0lj │ │ └── index.html │ ├── alert(_:ispresented:presenting:actions:message:)-7in1i │ │ └── index.html │ ├── alert(ispresented:content:) │ │ └── index.html │ ├── alert(ispresented:error:actions:) │ │ └── index.html │ ├── alert(ispresented:error:actions:message:) │ │ └── index.html │ ├── alert(item:content:) │ │ └── index.html │ ├── alignmentguide(_:computevalue:)-3j04c │ │ └── index.html │ ├── alignmentguide(_:computevalue:)-6cgw1 │ │ └── index.html │ ├── alloweddynamicrange(_:) │ │ └── index.html │ ├── allowshittesting(_:) │ │ └── index.html │ ├── allowstightening(_:) │ │ └── index.html │ ├── allowswindowactivationevents(_:) │ │ └── index.html │ ├── anchorpreference(key:value:transform:) │ │ └── index.html │ ├── animation(_:) │ │ └── index.html │ ├── animation(_:body:) │ │ └── index.html │ ├── animation(_:value:) │ │ └── index.html │ ├── aspectratio(_:contentmode:)-7axjz │ │ └── index.html │ ├── aspectratio(_:contentmode:)-9ou0n │ │ └── index.html │ ├── autocapitalization(_:) │ │ └── index.html │ ├── autocorrectiondisabled(_:) │ │ └── index.html │ ├── background(_:alignment:) │ │ └── index.html │ ├── background(_:ignoressafeareaedges:) │ │ └── index.html │ ├── background(_:in:fillstyle:)-23tdy │ │ └── index.html │ ├── background(_:in:fillstyle:)-6jq5v │ │ └── index.html │ ├── background(alignment:content:) │ │ └── index.html │ ├── background(ignoressafeareaedges:) │ │ └── index.html │ ├── background(in:fillstyle:)-5imds │ │ └── index.html │ ├── background(in:fillstyle:)-axdh │ │ └── index.html │ ├── backgroundpreferencevalue(_:_:) │ │ └── index.html │ ├── backgroundpreferencevalue(_:alignment:_:) │ │ └── index.html │ ├── backgroundstyle(_:) │ │ └── index.html │ ├── badge(_:)-1ctop │ │ └── index.html │ ├── badge(_:)-3asd5 │ │ └── index.html │ ├── badge(_:)-534ev │ │ └── index.html │ ├── badge(_:)-9i75f │ │ └── index.html │ ├── badgeprominence(_:) │ │ └── index.html │ ├── baselineoffset(_:) │ │ └── index.html │ ├── blendmode(_:) │ │ └── index.html │ ├── blur(radius:opaque:) │ │ └── index.html │ ├── body │ │ └── index.html │ ├── bold(_:) │ │ └── index.html │ ├── border(_:width:) │ │ └── index.html │ ├── brightness(_:) │ │ └── index.html │ ├── buttonbordershape(_:) │ │ └── index.html │ ├── buttonrepeatbehavior(_:) │ │ └── index.html │ ├── buttonstyle(_:)-345cf │ │ └── index.html │ ├── buttonstyle(_:)-3tvtp │ │ └── index.html │ ├── clipped(antialiased:) │ │ └── index.html │ ├── clipshape(_:style:) │ │ └── index.html │ ├── coloreffect(_:isenabled:) │ │ └── index.html │ ├── colorinvert() │ │ └── index.html │ ├── colormultiply(_:) │ │ └── index.html │ ├── colorscheme(_:) │ │ └── index.html │ ├── compositinggroup() │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-5xywu │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-80zyn │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-8i1oj │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-57qns │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-584dw │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-6fiao │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-4roko │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-5kgoy │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-7w0h7 │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-3f0gt │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-6fq7q │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-ece4 │ │ └── index.html │ ├── containerbackground(_:for:) │ │ └── index.html │ ├── containerbackground(for:alignment:content:) │ │ └── index.html │ ├── containerrelativeframe(_:alignment:) │ │ └── index.html │ ├── containerrelativeframe(_:alignment:_:) │ │ └── index.html │ ├── containerrelativeframe(_:count:span:spacing:alignment:) │ │ └── index.html │ ├── containershape(_:) │ │ └── index.html │ ├── containervalue(_:_:) │ │ └── index.html │ ├── contentmargins(_:_:for:)-2em8w │ │ └── index.html │ ├── contentmargins(_:_:for:)-9wi5s │ │ └── index.html │ ├── contentmargins(_:for:) │ │ └── index.html │ ├── contentshape(_:_:eofill:) │ │ └── index.html │ ├── contentshape(_:eofill:) │ │ └── index.html │ ├── contenttransition(_:) │ │ └── index.html │ ├── contextmenu(_:) │ │ └── index.html │ ├── contextmenu(forselectiontype:menu:primaryaction:) │ │ └── index.html │ ├── contextmenu(menuitems:) │ │ └── index.html │ ├── contextmenu(menuitems:preview:) │ │ └── index.html │ ├── contrast(_:) │ │ └── index.html │ ├── controlgroupstyle(_:) │ │ └── index.html │ ├── controlsize(_:) │ │ └── index.html │ ├── coordinatespace(_:) │ │ └── index.html │ ├── coordinatespace(name:) │ │ └── index.html │ ├── cornerradius(_:antialiased:) │ │ └── index.html │ ├── datepickerstyle(_:) │ │ └── index.html │ ├── defaultadaptabletabbarplacement(_:) │ │ └── index.html │ ├── defaultappstorage(_:) │ │ └── index.html │ ├── defaultfocus(_:_:priority:) │ │ └── index.html │ ├── defaulthovereffect(_:)-2ojae │ │ └── index.html │ ├── defaulthovereffect(_:)-3r12q │ │ └── index.html │ ├── defaultscrollanchor(_:) │ │ └── index.html │ ├── defaultscrollanchor(_:for:) │ │ └── index.html │ ├── deferssystemgestures(on:) │ │ └── index.html │ ├── deletedisabled(_:) │ │ └── index.html │ ├── dialogicon(_:) │ │ └── index.html │ ├── dialogsuppressiontoggle(_:issuppressed:)-6dw3g │ │ └── index.html │ ├── dialogsuppressiontoggle(_:issuppressed:)-bd9a │ │ └── index.html │ ├── dialogsuppressiontoggle(_:issuppressed:)-jnuj │ │ └── index.html │ ├── dialogsuppressiontoggle(issuppressed:) │ │ └── index.html │ ├── disableautocorrection(_:) │ │ └── index.html │ ├── disabled(_:) │ │ └── index.html │ ├── disclosuregroupstyle(_:) │ │ └── index.html │ ├── distortioneffect(_:maxsampleoffset:isenabled:) │ │ └── index.html │ ├── documentbrowsercontextmenu(_:) │ │ └── index.html │ ├── draggable(_:) │ │ └── index.html │ ├── draggable(_:preview:) │ │ └── index.html │ ├── drawinggroup(opaque:colormode:) │ │ └── index.html │ ├── dropdestination(for:action:istargeted:) │ │ └── index.html │ ├── dynamictypesize(_:) │ │ └── index.html │ ├── edgesignoringsafearea(_:) │ │ └── index.html │ ├── environment(_:) │ │ └── index.html │ ├── environment(_:_:) │ │ └── index.html │ ├── environmentobject(_:) │ │ └── index.html │ ├── filedialogbrowseroptions(_:) │ │ └── index.html │ ├── filedialogconfirmationlabel(_:)-6vmff │ │ └── index.html │ ├── filedialogconfirmationlabel(_:)-8f0pz │ │ └── index.html │ ├── filedialogconfirmationlabel(_:)-8ntih │ │ └── index.html │ ├── filedialogcustomizationid(_:) │ │ └── index.html │ ├── filedialogdefaultdirectory(_:) │ │ └── index.html │ ├── filedialogimportsunresolvedaliases(_:) │ │ └── index.html │ ├── filedialogmessage(_:)-76jse │ │ └── index.html │ ├── filedialogmessage(_:)-7xp34 │ │ └── index.html │ ├── filedialogmessage(_:)-7zla1 │ │ └── index.html │ ├── filedialogurlenabled(_:) │ │ └── index.html │ ├── fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-20e4l │ │ └── index.html │ ├── fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-kj1m │ │ └── index.html │ ├── fileexporter(ispresented:document:contenttypes:defaultfilename:oncompletion:oncancellation:)-3q4uo │ │ └── index.html │ ├── fileexporter(ispresented:document:contenttypes:defaultfilename:oncompletion:oncancellation:)-8qmm9 │ │ └── index.html │ ├── fileexporter(ispresented:documents:contenttype:oncompletion:)-2ie9o │ │ └── index.html │ ├── fileexporter(ispresented:documents:contenttype:oncompletion:)-54ar1 │ │ └── index.html │ ├── fileexporter(ispresented:documents:contenttypes:oncompletion:oncancellation:)-14r9g │ │ └── index.html │ ├── fileexporter(ispresented:documents:contenttypes:oncompletion:oncancellation:)-14wst │ │ └── index.html │ ├── fileexporter(ispresented:item:contenttypes:defaultfilename:oncompletion:oncancellation:) │ │ └── index.html │ ├── fileexporter(ispresented:items:contenttypes:oncompletion:oncancellation:) │ │ └── index.html │ ├── fileexporterfilenamelabel(_:)-9hd2d │ │ └── index.html │ ├── fileexporterfilenamelabel(_:)-exnd │ │ └── index.html │ ├── fileexporterfilenamelabel(_:)-s9pk │ │ └── index.html │ ├── fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:) │ │ └── index.html │ ├── fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:oncancellation:) │ │ └── index.html │ ├── fileimporter(ispresented:allowedcontenttypes:oncompletion:) │ │ └── index.html │ ├── filemover(ispresented:file:oncompletion:) │ │ └── index.html │ ├── filemover(ispresented:file:oncompletion:oncancellation:) │ │ └── index.html │ ├── filemover(ispresented:files:oncompletion:) │ │ └── index.html │ ├── filemover(ispresented:files:oncompletion:oncancellation:) │ │ └── index.html │ ├── finddisabled(_:) │ │ └── index.html │ ├── findnavigator(ispresented:) │ │ └── index.html │ ├── fixedsize() │ │ └── index.html │ ├── fixedsize(horizontal:vertical:) │ │ └── index.html │ ├── flipsforrighttoleftlayoutdirection(_:) │ │ └── index.html │ ├── focusable(_:) │ │ └── index.html │ ├── focusable(_:interactions:) │ │ └── index.html │ ├── focused(_:) │ │ └── index.html │ ├── focused(_:equals:) │ │ └── index.html │ ├── focusedobject(_:)-41gia │ │ └── index.html │ ├── focusedobject(_:)-4rb1d │ │ └── index.html │ ├── focusedsceneobject(_:)-2uika │ │ └── index.html │ ├── focusedsceneobject(_:)-k6cu │ │ └── index.html │ ├── focusedscenevalue(_:) │ │ └── index.html │ ├── focusedscenevalue(_:_:)-66xjd │ │ └── index.html │ ├── focusedscenevalue(_:_:)-7xso │ │ └── index.html │ ├── focusedvalue(_:) │ │ └── index.html │ ├── focusedvalue(_:_:)-22h8q │ │ └── index.html │ ├── focusedvalue(_:_:)-m3rc │ │ └── index.html │ ├── focuseffectdisabled(_:) │ │ └── index.html │ ├── font(_:) │ │ └── index.html │ ├── fontdesign(_:) │ │ └── index.html │ ├── fontweight(_:) │ │ └── index.html │ ├── fontwidth(_:) │ │ └── index.html │ ├── foregroundcolor(_:) │ │ └── index.html │ ├── foregroundstyle(_:) │ │ └── index.html │ ├── foregroundstyle(_:_:) │ │ └── index.html │ ├── foregroundstyle(_:_:_:) │ │ └── index.html │ ├── formstyle(_:) │ │ └── index.html │ ├── frame() │ │ └── index.html │ ├── frame(minwidth:idealwidth:maxwidth:minheight:idealheight:maxheight:alignment:) │ │ └── index.html │ ├── frame(width:height:alignment:) │ │ └── index.html │ ├── fullscreencover(ispresented:ondismiss:content:) │ │ └── index.html │ ├── fullscreencover(item:ondismiss:content:) │ │ └── index.html │ ├── gaugestyle(_:) │ │ └── index.html │ ├── geometrygroup() │ │ └── index.html │ ├── gesture(_:) │ │ └── index.html │ ├── gesture(_:including:) │ │ └── index.html │ ├── gesture(_:isenabled:) │ │ └── index.html │ ├── gesture(_:name:isenabled:) │ │ └── index.html │ ├── grayscale(_:) │ │ └── index.html │ ├── gridcellanchor(_:) │ │ └── index.html │ ├── gridcellcolumns(_:) │ │ └── index.html │ ├── gridcellunsizedaxes(_:) │ │ └── index.html │ ├── gridcolumnalignment(_:) │ │ └── index.html │ ├── groupboxstyle(_:) │ │ └── index.html │ ├── handgestureshortcut(_:isenabled:) │ │ └── index.html │ ├── handlesexternalevents(preferring:allowing:) │ │ └── index.html │ ├── handlingstacktabbartoolbarbehavior(inputnavigationnodetype:) │ │ └── index.html │ ├── headerprominence(_:) │ │ └── index.html │ ├── help(_:)-5e9y0 │ │ └── index.html │ ├── help(_:)-6jt45 │ │ └── index.html │ ├── help(_:)-74m67 │ │ └── index.html │ ├── hidden() │ │ └── index.html │ ├── highprioritygesture(_:including:) │ │ └── index.html │ ├── highprioritygesture(_:isenabled:) │ │ └── index.html │ ├── highprioritygesture(_:name:isenabled:) │ │ └── index.html │ ├── hovereffect(_:) │ │ └── index.html │ ├── hovereffect(_:isenabled:)-6or5l │ │ └── index.html │ ├── hovereffect(_:isenabled:)-xj5 │ │ └── index.html │ ├── hovereffectdisabled(_:) │ │ └── index.html │ ├── huerotation(_:) │ │ └── index.html │ ├── id(_:) │ │ └── index.html │ ├── ignoressafearea(_:edges:) │ │ └── index.html │ ├── imagescale(_:) │ │ └── index.html │ ├── index.html │ ├── indexviewstyle(_:) │ │ └── index.html │ ├── init() │ │ └── index.html │ ├── inspector(ispresented:content:) │ │ └── index.html │ ├── inspectorcolumnwidth(_:) │ │ └── index.html │ ├── inspectorcolumnwidth(min:ideal:max:) │ │ └── index.html │ ├── interactionactivitytrackingtag(_:) │ │ └── index.html │ ├── interactivedismissdisabled(_:) │ │ └── index.html │ ├── invalidatablecontent(_:) │ │ └── index.html │ ├── italic(_:) │ │ └── index.html │ ├── itemprovider(_:) │ │ └── index.html │ ├── kerning(_:) │ │ └── index.html │ ├── keyboardshortcut(_:)-2i4eg │ │ └── index.html │ ├── keyboardshortcut(_:)-92jli │ │ └── index.html │ ├── keyboardshortcut(_:modifiers:) │ │ └── index.html │ ├── keyboardshortcut(_:modifiers:localization:) │ │ └── index.html │ ├── keyboardtype(_:) │ │ └── index.html │ ├── keyframeanimator(initialvalue:repeating:content:keyframes:) │ │ └── index.html │ ├── keyframeanimator(initialvalue:trigger:content:keyframes:) │ │ └── index.html │ ├── labeledcontentstyle(_:) │ │ └── index.html │ ├── labelshidden() │ │ └── index.html │ ├── labelstyle(_:) │ │ └── index.html │ ├── labelsvisibility(_:) │ │ └── index.html │ ├── layereffect(_:maxsampleoffset:isenabled:) │ │ └── index.html │ ├── layoutdirectionbehavior(_:) │ │ └── index.html │ ├── layoutpriority(_:) │ │ └── index.html │ ├── layoutvalue(key:value:) │ │ └── index.html │ ├── linelimit(_:)-3zwls │ │ └── index.html │ ├── linelimit(_:)-6f6sw │ │ └── index.html │ ├── linelimit(_:)-87kus │ │ └── index.html │ ├── linelimit(_:)-9x7xm │ │ └── index.html │ ├── linelimit(_:reservesspace:) │ │ └── index.html │ ├── linespacing(_:) │ │ └── index.html │ ├── listitemtint(_:)-3nxu │ │ └── index.html │ ├── listitemtint(_:)-4ajsq │ │ └── index.html │ ├── listrowbackground(_:) │ │ └── index.html │ ├── listrowinsets(_:) │ │ └── index.html │ ├── listrowseparator(_:edges:) │ │ └── index.html │ ├── listrowseparatortint(_:edges:) │ │ └── index.html │ ├── listrowspacing(_:) │ │ └── index.html │ ├── listsectionseparator(_:edges:) │ │ └── index.html │ ├── listsectionseparatortint(_:edges:) │ │ └── index.html │ ├── listsectionspacing(_:)-3llux │ │ └── index.html │ ├── listsectionspacing(_:)-98e3w │ │ └── index.html │ ├── liststyle(_:) │ │ └── index.html │ ├── luminancetoalpha() │ │ └── index.html │ ├── mask(_:) │ │ └── index.html │ ├── mask(alignment:_:) │ │ └── index.html │ ├── matchedgeometryeffect(id:in:properties:anchor:issource:) │ │ └── index.html │ ├── matchedtransitionsource(id:in:) │ │ └── index.html │ ├── matchedtransitionsource(id:in:configuration:) │ │ └── index.html │ ├── materialactiveappearance(_:) │ │ └── index.html │ ├── menuactiondismissbehavior(_:) │ │ └── index.html │ ├── menuindicator(_:) │ │ └── index.html │ ├── menuorder(_:) │ │ └── index.html │ ├── menustyle(_:) │ │ └── index.html │ ├── minimumscalefactor(_:) │ │ └── index.html │ ├── modifier(_:) │ │ └── index.html │ ├── monospaced(_:) │ │ └── index.html │ ├── monospaceddigit() │ │ └── index.html │ ├── movedisabled(_:) │ │ └── index.html │ ├── multilinetextalignment(_:) │ │ └── index.html │ ├── navigationbarbackbuttonhidden(_:) │ │ └── index.html │ ├── navigationbarhidden(_:) │ │ └── index.html │ ├── navigationbaritems(leading:) │ │ └── index.html │ ├── navigationbaritems(leading:trailing:) │ │ └── index.html │ ├── navigationbaritems(trailing:) │ │ └── index.html │ ├── navigationbartitle(_:)-1m1w2 │ │ └── index.html │ ├── navigationbartitle(_:)-4sfmc │ │ └── index.html │ ├── navigationbartitle(_:)-6eayb │ │ └── index.html │ ├── navigationbartitle(_:displaymode:)-7cbdo │ │ └── index.html │ ├── navigationbartitle(_:displaymode:)-886dx │ │ └── index.html │ ├── navigationbartitle(_:displaymode:)-9qmo2 │ │ └── index.html │ ├── navigationbartitledisplaymode(_:) │ │ └── index.html │ ├── navigationdestination(for:destination:) │ │ └── index.html │ ├── navigationdestination(ispresented:destination:) │ │ └── index.html │ ├── navigationdestination(item:destination:) │ │ └── index.html │ ├── navigationdocument(_:) │ │ └── index.html │ ├── navigationdocument(_:preview:)-1w4pz │ │ └── index.html │ ├── navigationdocument(_:preview:)-69076 │ │ └── index.html │ ├── navigationdocument(_:preview:)-7ooro │ │ └── index.html │ ├── navigationdocument(_:preview:)-93lt6 │ │ └── index.html │ ├── navigationenvironmenttriggerhandler(_:) │ │ └── index.html │ ├── navigationsplitviewcolumnwidth(_:) │ │ └── index.html │ ├── navigationsplitviewcolumnwidth(min:ideal:max:) │ │ └── index.html │ ├── navigationsplitviewstyle(_:) │ │ └── index.html │ ├── navigationtitle(_:)-29wqk │ │ └── index.html │ ├── navigationtitle(_:)-2w1en │ │ └── index.html │ ├── navigationtitle(_:)-450f9 │ │ └── index.html │ ├── navigationtitle(_:)-919ez │ │ └── index.html │ ├── navigationtitle(_:)-9yk88 │ │ └── index.html │ ├── navigationtransition(_:) │ │ └── index.html │ ├── navigationviewstyle(_:) │ │ └── index.html │ ├── offset(_:) │ │ └── index.html │ ├── offset(x:y:) │ │ └── index.html │ ├── onappear(perform:) │ │ └── index.html │ ├── onchange(of:initial:_:)-31w1g │ │ └── index.html │ ├── onchange(of:initial:_:)-3zixc │ │ └── index.html │ ├── onchange(of:perform:) │ │ └── index.html │ ├── oncontinueuseractivity(_:perform:) │ │ └── index.html │ ├── oncontinuoushover(coordinatespace:perform:) │ │ └── index.html │ ├── ondisappear(perform:) │ │ └── index.html │ ├── ondrag(_:) │ │ └── index.html │ ├── ondrag(_:preview:) │ │ └── index.html │ ├── ondrop(of:delegate:)-2gtfk │ │ └── index.html │ ├── ondrop(of:delegate:)-98x37 │ │ └── index.html │ ├── ondrop(of:istargeted:perform:)-1e0mh │ │ └── index.html │ ├── ondrop(of:istargeted:perform:)-1os00 │ │ └── index.html │ ├── ondrop(of:istargeted:perform:)-6opfb │ │ └── index.html │ ├── ondrop(of:istargeted:perform:)-84yis │ │ └── index.html │ ├── ongeometrychange(for:of:action:)-57fhd │ │ └── index.html │ ├── ongeometrychange(for:of:action:)-lqhq │ │ └── index.html │ ├── onhover(perform:) │ │ └── index.html │ ├── onkeypress(_:action:) │ │ └── index.html │ ├── onkeypress(_:phases:action:) │ │ └── index.html │ ├── onkeypress(characters:phases:action:) │ │ └── index.html │ ├── onkeypress(keys:phases:action:) │ │ └── index.html │ ├── onkeypress(phases:action:) │ │ └── index.html │ ├── onlongpressgesture(minimumduration:maximumdistance:perform:onpressingchanged:) │ │ └── index.html │ ├── onlongpressgesture(minimumduration:maximumdistance:pressing:perform:) │ │ └── index.html │ ├── onlongpressgesture(minimumduration:perform:onpressingchanged:) │ │ └── index.html │ ├── onlongpressgesture(minimumduration:pressing:perform:) │ │ └── index.html │ ├── onopenurl(perform:) │ │ └── index.html │ ├── onpencildoubletap(perform:) │ │ └── index.html │ ├── onpencilsqueeze(perform:) │ │ └── index.html │ ├── onpreferencechange(_:perform:) │ │ └── index.html │ ├── onreceive(_:perform:) │ │ └── index.html │ ├── onscrollgeometrychange(for:of:action:) │ │ └── index.html │ ├── onscrollphasechange(_:)-3ock4 │ │ └── index.html │ ├── onscrollphasechange(_:)-6g8i4 │ │ └── index.html │ ├── onscrolltargetvisibilitychange(idtype:threshold:_:) │ │ └── index.html │ ├── onscrollvisibilitychange(threshold:_:) │ │ └── index.html │ ├── onsubmit(of:_:) │ │ └── index.html │ ├── ontapgesture(count:coordinatespace:perform:) │ │ └── index.html │ ├── ontapgesture(count:perform:) │ │ └── index.html │ ├── opacity(_:) │ │ └── index.html │ ├── overlay(_:alignment:) │ │ └── index.html │ ├── overlay(_:ignoressafeareaedges:) │ │ └── index.html │ ├── overlay(_:in:fillstyle:) │ │ └── index.html │ ├── overlay(alignment:content:) │ │ └── index.html │ ├── overlaypreferencevalue(_:_:) │ │ └── index.html │ ├── overlaypreferencevalue(_:alignment:_:) │ │ └── index.html │ ├── padding(_:)-5g2i6 │ │ └── index.html │ ├── padding(_:)-7zb2d │ │ └── index.html │ ├── padding(_:_:) │ │ └── index.html │ ├── paletteselectioneffect(_:) │ │ └── index.html │ ├── persistentsystemoverlays(_:) │ │ └── index.html │ ├── phaseanimator(_:content:animation:) │ │ └── index.html │ ├── phaseanimator(_:trigger:content:animation:) │ │ └── index.html │ ├── pickerstyle(_:) │ │ └── index.html │ ├── popover(ispresented:attachmentanchor:arrowedge:content:) │ │ └── index.html │ ├── popover(item:attachmentanchor:arrowedge:content:) │ │ └── index.html │ ├── position(_:) │ │ └── index.html │ ├── position(x:y:) │ │ └── index.html │ ├── preference(key:value:) │ │ └── index.html │ ├── preferredcolorscheme(_:) │ │ └── index.html │ ├── presentationbackground(_:) │ │ └── index.html │ ├── presentationbackground(alignment:content:) │ │ └── index.html │ ├── presentationbackgroundinteraction(_:) │ │ └── index.html │ ├── presentationcompactadaptation(_:) │ │ └── index.html │ ├── presentationcompactadaptation(horizontal:vertical:) │ │ └── index.html │ ├── presentationcontentinteraction(_:) │ │ └── index.html │ ├── presentationcornerradius(_:) │ │ └── index.html │ ├── presentationdetents(_:) │ │ └── index.html │ ├── presentationdetents(_:selection:) │ │ └── index.html │ ├── presentationdragindicator(_:) │ │ └── index.html │ ├── presentationsizing(_:) │ │ └── index.html │ ├── presentingnavigationsource(id:) │ │ └── index.html │ ├── previewcontext(_:) │ │ └── index.html │ ├── previewdevice(_:) │ │ └── index.html │ ├── previewdisplayname(_:) │ │ └── index.html │ ├── previewinterfaceorientation(_:) │ │ └── index.html │ ├── previewlayout(_:) │ │ └── index.html │ ├── privacysensitive(_:) │ │ └── index.html │ ├── progressviewstyle(_:) │ │ └── index.html │ ├── projectioneffect(_:) │ │ └── index.html │ ├── redacted(reason:) │ │ └── index.html │ ├── refreshable(action:) │ │ └── index.html │ ├── registercustompresentablenavigationnodes(_:) │ │ └── index.html │ ├── renameaction(_:)-40tpl │ │ └── index.html │ ├── renameaction(_:)-4e7qp │ │ └── index.html │ ├── replacedisabled(_:) │ │ └── index.html │ ├── rotation3deffect(_:axis:anchor:anchorz:perspective:) │ │ └── index.html │ ├── rotationeffect(_:anchor:) │ │ └── index.html │ ├── safeareainset(edge:alignment:spacing:content:)-7dblt │ │ └── index.html │ ├── safeareainset(edge:alignment:spacing:content:)-81zak │ │ └── index.html │ ├── safeareapadding(_:)-5xin4 │ │ └── index.html │ ├── safeareapadding(_:)-7enb5 │ │ └── index.html │ ├── safeareapadding(_:_:) │ │ └── index.html │ ├── saturation(_:) │ │ └── index.html │ ├── scaledtofill() │ │ └── index.html │ ├── scaledtofit() │ │ └── index.html │ ├── scaleeffect(_:anchor:)-6q3pd │ │ └── index.html │ ├── scaleeffect(_:anchor:)-7m6qn │ │ └── index.html │ ├── scaleeffect(x:y:anchor:) │ │ └── index.html │ ├── scenepadding(_:) │ │ └── index.html │ ├── scenepadding(_:edges:) │ │ └── index.html │ ├── scrollbouncebehavior(_:axes:) │ │ └── index.html │ ├── scrollclipdisabled(_:) │ │ └── index.html │ ├── scrollcontentbackground(_:) │ │ └── index.html │ ├── scrolldisabled(_:) │ │ └── index.html │ ├── scrolldismisseskeyboard(_:) │ │ └── index.html │ ├── scrollindicators(_:axes:) │ │ └── index.html │ ├── scrollindicatorsflash(onappear:) │ │ └── index.html │ ├── scrollindicatorsflash(trigger:) │ │ └── index.html │ ├── scrollinputbehavior(_:for:) │ │ └── index.html │ ├── scrollposition(_:anchor:) │ │ └── index.html │ ├── scrollposition(id:anchor:) │ │ └── index.html │ ├── scrolltargetbehavior(_:) │ │ └── index.html │ ├── scrolltargetlayout(isenabled:) │ │ └── index.html │ ├── scrolltransition(_:axis:transition:) │ │ └── index.html │ ├── scrolltransition(topleading:bottomtrailing:axis:transition:) │ │ └── index.html │ ├── searchable(text:editabletokens:ispresented:placement:prompt:token:)-1y24e │ │ └── index.html │ ├── searchable(text:editabletokens:ispresented:placement:prompt:token:)-5z1i │ │ └── index.html │ ├── searchable(text:editabletokens:ispresented:placement:prompt:token:)-unhm │ │ └── index.html │ ├── searchable(text:editabletokens:placement:prompt:token:)-1czl0 │ │ └── index.html │ ├── searchable(text:editabletokens:placement:prompt:token:)-1rn4 │ │ └── index.html │ ├── searchable(text:editabletokens:placement:prompt:token:)-8j94v │ │ └── index.html │ ├── searchable(text:ispresented:placement:prompt:)-2mcv5 │ │ └── index.html │ ├── searchable(text:ispresented:placement:prompt:)-9j98z │ │ └── index.html │ ├── searchable(text:ispresented:placement:prompt:)-gr9l │ │ └── index.html │ ├── searchable(text:placement:prompt:)-4wac2 │ │ └── index.html │ ├── searchable(text:placement:prompt:)-5dwqf │ │ └── index.html │ ├── searchable(text:placement:prompt:)-6cbxg │ │ └── index.html │ ├── searchable(text:placement:prompt:suggestions:)-2odnn │ │ └── index.html │ ├── searchable(text:placement:prompt:suggestions:)-6jpql │ │ └── index.html │ ├── searchable(text:placement:prompt:suggestions:)-8jc8t │ │ └── index.html │ ├── searchable(text:tokens:ispresented:placement:prompt:token:)-7nl1z │ │ └── index.html │ ├── searchable(text:tokens:ispresented:placement:prompt:token:)-8dmj │ │ └── index.html │ ├── searchable(text:tokens:ispresented:placement:prompt:token:)-9umbd │ │ └── index.html │ ├── searchable(text:tokens:placement:prompt:token:)-5u2w │ │ └── index.html │ ├── searchable(text:tokens:placement:prompt:token:)-6qvr8 │ │ └── index.html │ ├── searchable(text:tokens:placement:prompt:token:)-9p7gv │ │ └── index.html │ ├── searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-12qj3 │ │ └── index.html │ ├── searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-18ewo │ │ └── index.html │ ├── searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-4nq5z │ │ └── index.html │ ├── searchable(text:tokens:suggestedtokens:placement:prompt:token:)-37ez3 │ │ └── index.html │ ├── searchable(text:tokens:suggestedtokens:placement:prompt:token:)-59kaq │ │ └── index.html │ ├── searchable(text:tokens:suggestedtokens:placement:prompt:token:)-638ci │ │ └── index.html │ ├── searchcompletion(_:) │ │ └── index.html │ ├── searchdictationbehavior(_:) │ │ └── index.html │ ├── searchfocused(_:) │ │ └── index.html │ ├── searchfocused(_:equals:) │ │ └── index.html │ ├── searchpresentationtoolbarbehavior(_:) │ │ └── index.html │ ├── searchscopes(_:activation:_:) │ │ └── index.html │ ├── searchscopes(_:scopes:) │ │ └── index.html │ ├── searchsuggestions(_:) │ │ └── index.html │ ├── searchsuggestions(_:for:) │ │ └── index.html │ ├── sectionactions(content:) │ │ └── index.html │ ├── selectiondisabled(_:) │ │ └── index.html │ ├── sensoryfeedback(_:trigger:) │ │ └── index.html │ ├── sensoryfeedback(_:trigger:condition:) │ │ └── index.html │ ├── sensoryfeedback(trigger:_:) │ │ └── index.html │ ├── shadow(color:radius:x:y:) │ │ └── index.html │ ├── sheet(ispresented:ondismiss:content:) │ │ └── index.html │ ├── sheet(item:ondismiss:content:) │ │ └── index.html │ ├── simultaneousgesture(_:including:) │ │ └── index.html │ ├── simultaneousgesture(_:isenabled:) │ │ └── index.html │ ├── simultaneousgesture(_:name:isenabled:) │ │ └── index.html │ ├── speechadjustedpitch(_:) │ │ └── index.html │ ├── speechalwaysincludespunctuation(_:) │ │ └── index.html │ ├── speechannouncementsqueued(_:) │ │ └── index.html │ ├── speechspellsoutcharacters(_:) │ │ └── index.html │ ├── springloadingbehavior(_:) │ │ └── index.html │ ├── statusbar(hidden:) │ │ └── index.html │ ├── statusbarhidden(_:) │ │ └── index.html │ ├── strikethrough(_:pattern:color:) │ │ └── index.html │ ├── submitlabel(_:) │ │ └── index.html │ ├── submitscope(_:) │ │ └── index.html │ ├── swipeactions(edge:allowsfullswipe:content:) │ │ └── index.html │ ├── symboleffect(_:options:isactive:) │ │ └── index.html │ ├── symboleffect(_:options:value:) │ │ └── index.html │ ├── symboleffectsremoved(_:) │ │ └── index.html │ ├── symbolrenderingmode(_:) │ │ └── index.html │ ├── symbolvariant(_:) │ │ └── index.html │ ├── tabitem(_:) │ │ └── index.html │ ├── tablecolumnheaders(_:) │ │ └── index.html │ ├── tablestyle(_:) │ │ └── index.html │ ├── tabviewcustomization(_:) │ │ └── index.html │ ├── tabviewsidebarbottombar(content:) │ │ └── index.html │ ├── tabviewsidebarfooter(content:) │ │ └── index.html │ ├── tabviewsidebarheader(content:) │ │ └── index.html │ ├── tabviewstyle(_:) │ │ └── index.html │ ├── tag(_:includeoptional:) │ │ └── index.html │ ├── task(id:priority:_:) │ │ └── index.html │ ├── task(priority:_:) │ │ └── index.html │ ├── textcase(_:) │ │ └── index.html │ ├── textcontenttype(_:) │ │ └── index.html │ ├── texteditorstyle(_:) │ │ └── index.html │ ├── textfieldstyle(_:) │ │ └── index.html │ ├── textinputautocapitalization(_:) │ │ └── index.html │ ├── textrenderer(_:) │ │ └── index.html │ ├── textscale(_:isenabled:) │ │ └── index.html │ ├── textselection(_:) │ │ └── index.html │ ├── textselectionaffinity(_:) │ │ └── index.html │ ├── tint(_:) │ │ └── index.html │ ├── togglestyle(_:) │ │ └── index.html │ ├── toolbar(_:for:) │ │ └── index.html │ ├── toolbar(content:)-4end1 │ │ └── index.html │ ├── toolbar(content:)-8w3c0 │ │ └── index.html │ ├── toolbar(id:content:) │ │ └── index.html │ ├── toolbar(removing:) │ │ └── index.html │ ├── toolbarbackground(_:for:) │ │ └── index.html │ ├── toolbarbackgroundvisibility(_:for:) │ │ └── index.html │ ├── toolbarcolorscheme(_:for:) │ │ └── index.html │ ├── toolbarforegroundstyle(_:for:) │ │ └── index.html │ ├── toolbarrole(_:) │ │ └── index.html │ ├── toolbartitledisplaymode(_:) │ │ └── index.html │ ├── toolbartitlemenu(content:) │ │ └── index.html │ ├── toolbarvisibility(_:for:) │ │ └── index.html │ ├── tracking(_:) │ │ └── index.html │ ├── transaction(_:) │ │ └── index.html │ ├── transaction(_:body:) │ │ └── index.html │ ├── transaction(value:_:) │ │ └── index.html │ ├── transformanchorpreference(key:value:transform:) │ │ └── index.html │ ├── transformeffect(_:) │ │ └── index.html │ ├── transformenvironment(_:transform:) │ │ └── index.html │ ├── transformpreference(_:_:) │ │ └── index.html │ ├── transition(_:) │ │ └── index.html │ ├── truncationmode(_:) │ │ └── index.html │ ├── typeselectequivalent(_:)-4m2ru │ │ └── index.html │ ├── typeselectequivalent(_:)-5gb2z │ │ └── index.html │ ├── typeselectequivalent(_:)-84236 │ │ └── index.html │ ├── typesettinglanguage(_:isenabled:)-1bp91 │ │ └── index.html │ ├── typesettinglanguage(_:isenabled:)-8eiif │ │ └── index.html │ ├── underline(_:pattern:color:) │ │ └── index.html │ ├── unredacted() │ │ └── index.html │ ├── useractivity(_:element:_:) │ │ └── index.html │ ├── useractivity(_:isactive:_:) │ │ └── index.html │ ├── view-implementations │ │ └── index.html │ ├── visualeffect(_:) │ │ └── index.html │ ├── windowtoolbarfullscreenvisibility(_:) │ │ └── index.html │ ├── writingtoolsbehavior(_:) │ │ └── index.html │ └── zindex(_:) │ │ └── index.html │ ├── switchnavigationcommand │ ├── canexecute(on:) │ │ └── index.html │ ├── execute(on:) │ │ └── index.html │ ├── index.html │ ├── init(switchednode:) │ │ └── index.html │ ├── navigationcommand-implementations │ │ └── index.html │ ├── perform(animated:action:) │ │ └── index.html │ └── switchnode(_:) │ │ └── index.html │ ├── tabnode │ ├── id │ │ └── index.html │ ├── index.html │ ├── navigationnode │ │ └── index.html │ └── resolvedview │ │ └── index.html │ ├── tabsrootnavigationnode() │ └── index.html │ ├── tabsrootnavigationnode │ ├── body(for:) │ │ └── index.html │ ├── index.html │ ├── modifiedview │ │ └── index.html │ ├── selectedtabnodeid │ │ └── index.html │ └── tabsnodes │ │ └── index.html │ ├── tabsrootnavigationnodeview │ ├── accentcolor(_:) │ │ └── index.html │ ├── accessibility(activationpoint:)-1nh0s │ │ └── index.html │ ├── accessibility(activationpoint:)-3u2kw │ │ └── index.html │ ├── accessibility(addtraits:) │ │ └── index.html │ ├── accessibility(hidden:) │ │ └── index.html │ ├── accessibility(hint:) │ │ └── index.html │ ├── accessibility(identifier:) │ │ └── index.html │ ├── accessibility(inputlabels:) │ │ └── index.html │ ├── accessibility(label:) │ │ └── index.html │ ├── accessibility(removetraits:) │ │ └── index.html │ ├── accessibility(selectionidentifier:) │ │ └── index.html │ ├── accessibility(sortpriority:) │ │ └── index.html │ ├── accessibility(value:) │ │ └── index.html │ ├── accessibilityaction(_:_:) │ │ └── index.html │ ├── accessibilityaction(action:label:) │ │ └── index.html │ ├── accessibilityaction(named:_:)-1aq1d │ │ └── index.html │ ├── accessibilityaction(named:_:)-31syd │ │ └── index.html │ ├── accessibilityaction(named:_:)-4xxqa │ │ └── index.html │ ├── accessibilityactions(_:) │ │ └── index.html │ ├── accessibilityactions(category:_:) │ │ └── index.html │ ├── accessibilityactivationpoint(_:)-2c1eg │ │ └── index.html │ ├── accessibilityactivationpoint(_:)-63q81 │ │ └── index.html │ ├── accessibilityactivationpoint(_:isenabled:)-3ci0a │ │ └── index.html │ ├── accessibilityactivationpoint(_:isenabled:)-5z1fs │ │ └── index.html │ ├── accessibilityaddtraits(_:) │ │ └── index.html │ ├── accessibilityadjustableaction(_:) │ │ └── index.html │ ├── accessibilitychartdescriptor(_:) │ │ └── index.html │ ├── accessibilitychildren(children:) │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-21i9b │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-4diiu │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-5rqbs │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-6fd8o │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-83d48 │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-9ws4n │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-9xu95 │ │ └── index.html │ ├── accessibilitycustomcontent(_:_:importance:)-m1i6 │ │ └── index.html │ ├── accessibilitydirecttouch(_:options:) │ │ └── index.html │ ├── accessibilitydragpoint(_:description:)-5hxrv │ │ └── index.html │ ├── accessibilitydragpoint(_:description:)-75t24 │ │ └── index.html │ ├── accessibilitydragpoint(_:description:)-9co2n │ │ └── index.html │ ├── accessibilitydragpoint(_:description:isenabled:)-2wpxz │ │ └── index.html │ ├── accessibilitydragpoint(_:description:isenabled:)-2xhej │ │ └── index.html │ ├── accessibilitydragpoint(_:description:isenabled:)-4h0c7 │ │ └── index.html │ ├── accessibilitydroppoint(_:description:)-3iy27 │ │ └── index.html │ ├── accessibilitydroppoint(_:description:)-544xw │ │ └── index.html │ ├── accessibilitydroppoint(_:description:)-5kfk0 │ │ └── index.html │ ├── accessibilitydroppoint(_:description:isenabled:)-3uqi5 │ │ └── index.html │ ├── accessibilitydroppoint(_:description:isenabled:)-4iftj │ │ └── index.html │ ├── accessibilitydroppoint(_:description:isenabled:)-59hgf │ │ └── index.html │ ├── accessibilityelement(children:) │ │ └── index.html │ ├── accessibilityfocused(_:) │ │ └── index.html │ ├── accessibilityfocused(_:equals:) │ │ └── index.html │ ├── accessibilityheading(_:) │ │ └── index.html │ ├── accessibilityhidden(_:) │ │ └── index.html │ ├── accessibilityhidden(_:isenabled:) │ │ └── index.html │ ├── accessibilityhint(_:)-23fz4 │ │ └── index.html │ ├── accessibilityhint(_:)-3qrk0 │ │ └── index.html │ ├── accessibilityhint(_:)-4zfoy │ │ └── index.html │ ├── accessibilityhint(_:isenabled:)-1d09p │ │ └── index.html │ ├── accessibilityhint(_:isenabled:)-2x71z │ │ └── index.html │ ├── accessibilityhint(_:isenabled:)-6n31s │ │ └── index.html │ ├── accessibilityidentifier(_:) │ │ └── index.html │ ├── accessibilityidentifier(_:isenabled:) │ │ └── index.html │ ├── accessibilityignoresinvertcolors(_:) │ │ └── index.html │ ├── accessibilityinputlabels(_:)-300za │ │ └── index.html │ ├── accessibilityinputlabels(_:)-3k7d7 │ │ └── index.html │ ├── accessibilityinputlabels(_:)-9ji7h │ │ └── index.html │ ├── accessibilityinputlabels(_:isenabled:)-3jj3m │ │ └── index.html │ ├── accessibilityinputlabels(_:isenabled:)-81d95 │ │ └── index.html │ ├── accessibilityinputlabels(_:isenabled:)-fjv6 │ │ └── index.html │ ├── accessibilitylabel(_:)-2n48w │ │ └── index.html │ ├── accessibilitylabel(_:)-66shg │ │ └── index.html │ ├── accessibilitylabel(_:)-8020b │ │ └── index.html │ ├── accessibilitylabel(_:isenabled:)-6gbpf │ │ └── index.html │ ├── accessibilitylabel(_:isenabled:)-80073 │ │ └── index.html │ ├── accessibilitylabel(_:isenabled:)-9rxsm │ │ └── index.html │ ├── accessibilitylabel(content:) │ │ └── index.html │ ├── accessibilitylabeledpair(role:id:in:) │ │ └── index.html │ ├── accessibilitylinkedgroup(id:in:) │ │ └── index.html │ ├── accessibilityremovetraits(_:) │ │ └── index.html │ ├── accessibilityrepresentation(representation:) │ │ └── index.html │ ├── accessibilityrespondstouserinteraction(_:) │ │ └── index.html │ ├── accessibilityrespondstouserinteraction(_:isenabled:) │ │ └── index.html │ ├── accessibilityrotor(_:entries:)-2u3b3 │ │ └── index.html │ ├── accessibilityrotor(_:entries:)-4k80n │ │ └── index.html │ ├── accessibilityrotor(_:entries:)-5gyt6 │ │ └── index.html │ ├── accessibilityrotor(_:entries:)-96o00 │ │ └── index.html │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-128qe │ │ └── index.html │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-49686 │ │ └── index.html │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-9e042 │ │ └── index.html │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-pndh │ │ └── index.html │ ├── accessibilityrotor(_:entries:entrylabel:)-6tchk │ │ └── index.html │ ├── accessibilityrotor(_:entries:entrylabel:)-7gvci │ │ └── index.html │ ├── accessibilityrotor(_:entries:entrylabel:)-8yyu5 │ │ └── index.html │ ├── accessibilityrotor(_:entries:entrylabel:)-imfi │ │ └── index.html │ ├── accessibilityrotor(_:textranges:)-3sets │ │ └── index.html │ ├── accessibilityrotor(_:textranges:)-5254y │ │ └── index.html │ ├── accessibilityrotor(_:textranges:)-6adv9 │ │ └── index.html │ ├── accessibilityrotor(_:textranges:)-dwcu │ │ └── index.html │ ├── accessibilityrotorentry(id:in:) │ │ └── index.html │ ├── accessibilityscrollaction(_:) │ │ └── index.html │ ├── accessibilityshowslargecontentviewer() │ │ └── index.html │ ├── accessibilityshowslargecontentviewer(_:) │ │ └── index.html │ ├── accessibilitysortpriority(_:) │ │ └── index.html │ ├── accessibilitytextcontenttype(_:) │ │ └── index.html │ ├── accessibilityvalue(_:)-31k6z │ │ └── index.html │ ├── accessibilityvalue(_:)-3bzr0 │ │ └── index.html │ ├── accessibilityvalue(_:)-6iohx │ │ └── index.html │ ├── accessibilityvalue(_:isenabled:)-5wrf3 │ │ └── index.html │ ├── accessibilityvalue(_:isenabled:)-6nygh │ │ └── index.html │ ├── accessibilityvalue(_:isenabled:)-6q4v9 │ │ └── index.html │ ├── accessibilityzoomaction(_:) │ │ └── index.html │ ├── actionsheet(ispresented:content:) │ │ └── index.html │ ├── actionsheet(item:content:) │ │ └── index.html │ ├── alert(_:ispresented:actions:)-1o5tk │ │ └── index.html │ ├── alert(_:ispresented:actions:)-5az75 │ │ └── index.html │ ├── alert(_:ispresented:actions:)-6fafh │ │ └── index.html │ ├── alert(_:ispresented:actions:message:)-3sktt │ │ └── index.html │ ├── alert(_:ispresented:actions:message:)-87qj3 │ │ └── index.html │ ├── alert(_:ispresented:actions:message:)-9bi3s │ │ └── index.html │ ├── alert(_:ispresented:presenting:actions:)-4k4je │ │ └── index.html │ ├── alert(_:ispresented:presenting:actions:)-8lupe │ │ └── index.html │ ├── alert(_:ispresented:presenting:actions:)-8pbzx │ │ └── index.html │ ├── alert(_:ispresented:presenting:actions:message:)-1k92y │ │ └── index.html │ ├── alert(_:ispresented:presenting:actions:message:)-5uals │ │ └── index.html │ ├── alert(_:ispresented:presenting:actions:message:)-75c7c │ │ └── index.html │ ├── alert(ispresented:content:) │ │ └── index.html │ ├── alert(ispresented:error:actions:) │ │ └── index.html │ ├── alert(ispresented:error:actions:message:) │ │ └── index.html │ ├── alert(item:content:) │ │ └── index.html │ ├── alignmentguide(_:computevalue:)-52jtu │ │ └── index.html │ ├── alignmentguide(_:computevalue:)-86dmc │ │ └── index.html │ ├── alloweddynamicrange(_:) │ │ └── index.html │ ├── allowshittesting(_:) │ │ └── index.html │ ├── allowstightening(_:) │ │ └── index.html │ ├── allowswindowactivationevents(_:) │ │ └── index.html │ ├── anchorpreference(key:value:transform:) │ │ └── index.html │ ├── animation(_:) │ │ └── index.html │ ├── animation(_:body:) │ │ └── index.html │ ├── animation(_:value:) │ │ └── index.html │ ├── aspectratio(_:contentmode:)-5xtuo │ │ └── index.html │ ├── aspectratio(_:contentmode:)-sjtb │ │ └── index.html │ ├── autocapitalization(_:) │ │ └── index.html │ ├── autocorrectiondisabled(_:) │ │ └── index.html │ ├── background(_:alignment:) │ │ └── index.html │ ├── background(_:ignoressafeareaedges:) │ │ └── index.html │ ├── background(_:in:fillstyle:)-6014t │ │ └── index.html │ ├── background(_:in:fillstyle:)-tgj7 │ │ └── index.html │ ├── background(alignment:content:) │ │ └── index.html │ ├── background(ignoressafeareaedges:) │ │ └── index.html │ ├── background(in:fillstyle:)-4dtgw │ │ └── index.html │ ├── background(in:fillstyle:)-5rnpj │ │ └── index.html │ ├── backgroundpreferencevalue(_:_:) │ │ └── index.html │ ├── backgroundpreferencevalue(_:alignment:_:) │ │ └── index.html │ ├── backgroundstyle(_:) │ │ └── index.html │ ├── badge(_:)-3pyzx │ │ └── index.html │ ├── badge(_:)-6xk5x │ │ └── index.html │ ├── badge(_:)-80wnh │ │ └── index.html │ ├── badge(_:)-8q78e │ │ └── index.html │ ├── badgeprominence(_:) │ │ └── index.html │ ├── baselineoffset(_:) │ │ └── index.html │ ├── blendmode(_:) │ │ └── index.html │ ├── blur(radius:opaque:) │ │ └── index.html │ ├── body │ │ └── index.html │ ├── bold(_:) │ │ └── index.html │ ├── border(_:width:) │ │ └── index.html │ ├── brightness(_:) │ │ └── index.html │ ├── buttonbordershape(_:) │ │ └── index.html │ ├── buttonrepeatbehavior(_:) │ │ └── index.html │ ├── buttonstyle(_:)-1hmmh │ │ └── index.html │ ├── buttonstyle(_:)-1mv2p │ │ └── index.html │ ├── clipped(antialiased:) │ │ └── index.html │ ├── clipshape(_:style:) │ │ └── index.html │ ├── coloreffect(_:isenabled:) │ │ └── index.html │ ├── colorinvert() │ │ └── index.html │ ├── colormultiply(_:) │ │ └── index.html │ ├── colorscheme(_:) │ │ └── index.html │ ├── compositinggroup() │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-2v9ma │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-4cjhg │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-5emh │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-2oihf │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-3ct9r │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-3r8h6 │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-23gkk │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-5b8qp │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-g4d2 │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-4foh9 │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-8qcil │ │ └── index.html │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-91bzw │ │ └── index.html │ ├── containerbackground(_:for:) │ │ └── index.html │ ├── containerbackground(for:alignment:content:) │ │ └── index.html │ ├── containerrelativeframe(_:alignment:) │ │ └── index.html │ ├── containerrelativeframe(_:alignment:_:) │ │ └── index.html │ ├── containerrelativeframe(_:count:span:spacing:alignment:) │ │ └── index.html │ ├── containershape(_:) │ │ └── index.html │ ├── containervalue(_:_:) │ │ └── index.html │ ├── contentmargins(_:_:for:)-2kx23 │ │ └── index.html │ ├── contentmargins(_:_:for:)-8tq1h │ │ └── index.html │ ├── contentmargins(_:for:) │ │ └── index.html │ ├── contentshape(_:_:eofill:) │ │ └── index.html │ ├── contentshape(_:eofill:) │ │ └── index.html │ ├── contenttransition(_:) │ │ └── index.html │ ├── contextmenu(_:) │ │ └── index.html │ ├── contextmenu(forselectiontype:menu:primaryaction:) │ │ └── index.html │ ├── contextmenu(menuitems:) │ │ └── index.html │ ├── contextmenu(menuitems:preview:) │ │ └── index.html │ ├── contrast(_:) │ │ └── index.html │ ├── controlgroupstyle(_:) │ │ └── index.html │ ├── controlsize(_:) │ │ └── index.html │ ├── coordinatespace(_:) │ │ └── index.html │ ├── coordinatespace(name:) │ │ └── index.html │ ├── cornerradius(_:antialiased:) │ │ └── index.html │ ├── datepickerstyle(_:) │ │ └── index.html │ ├── defaultadaptabletabbarplacement(_:) │ │ └── index.html │ ├── defaultappstorage(_:) │ │ └── index.html │ ├── defaultfocus(_:_:priority:) │ │ └── index.html │ ├── defaulthovereffect(_:)-402e9 │ │ └── index.html │ ├── defaulthovereffect(_:)-jyt3 │ │ └── index.html │ ├── defaultscrollanchor(_:) │ │ └── index.html │ ├── defaultscrollanchor(_:for:) │ │ └── index.html │ ├── deferssystemgestures(on:) │ │ └── index.html │ ├── deletedisabled(_:) │ │ └── index.html │ ├── dialogicon(_:) │ │ └── index.html │ ├── dialogsuppressiontoggle(_:issuppressed:)-41mui │ │ └── index.html │ ├── dialogsuppressiontoggle(_:issuppressed:)-5wxj1 │ │ └── index.html │ ├── dialogsuppressiontoggle(_:issuppressed:)-8j7hl │ │ └── index.html │ ├── dialogsuppressiontoggle(issuppressed:) │ │ └── index.html │ ├── disableautocorrection(_:) │ │ └── index.html │ ├── disabled(_:) │ │ └── index.html │ ├── disclosuregroupstyle(_:) │ │ └── index.html │ ├── distortioneffect(_:maxsampleoffset:isenabled:) │ │ └── index.html │ ├── documentbrowsercontextmenu(_:) │ │ └── index.html │ ├── draggable(_:) │ │ └── index.html │ ├── draggable(_:preview:) │ │ └── index.html │ ├── drawinggroup(opaque:colormode:) │ │ └── index.html │ ├── dropdestination(for:action:istargeted:) │ │ └── index.html │ ├── dynamictypesize(_:) │ │ └── index.html │ ├── edgesignoringsafearea(_:) │ │ └── index.html │ ├── environment(_:) │ │ └── index.html │ ├── environment(_:_:) │ │ └── index.html │ ├── environmentobject(_:) │ │ └── index.html │ ├── filedialogbrowseroptions(_:) │ │ └── index.html │ ├── filedialogconfirmationlabel(_:)-3rlqn │ │ └── index.html │ ├── filedialogconfirmationlabel(_:)-44rr7 │ │ └── index.html │ ├── filedialogconfirmationlabel(_:)-8wv32 │ │ └── index.html │ ├── filedialogcustomizationid(_:) │ │ └── index.html │ ├── filedialogdefaultdirectory(_:) │ │ └── index.html │ ├── filedialogimportsunresolvedaliases(_:) │ │ └── index.html │ ├── filedialogmessage(_:)-2siks │ │ └── index.html │ ├── filedialogmessage(_:)-31lnl │ │ └── index.html │ ├── filedialogmessage(_:)-3uzei │ │ └── index.html │ ├── filedialogurlenabled(_:) │ │ └── index.html │ ├── fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-1pv4s │ │ └── index.html │ ├── fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-2cpob │ │ └── index.html │ ├── fileexporter(ispresented:document:contenttypes:defaultfilename:oncompletion:oncancellation:)-59vkm │ │ └── index.html │ ├── fileexporter(ispresented:document:contenttypes:defaultfilename:oncompletion:oncancellation:)-8zo6u │ │ └── index.html │ ├── fileexporter(ispresented:documents:contenttype:oncompletion:)-4p8zh │ │ └── index.html │ ├── fileexporter(ispresented:documents:contenttype:oncompletion:)-7j9yu │ │ └── index.html │ ├── fileexporter(ispresented:documents:contenttypes:oncompletion:oncancellation:)-2oyvc │ │ └── index.html │ ├── fileexporter(ispresented:documents:contenttypes:oncompletion:oncancellation:)-3e7vo │ │ └── index.html │ ├── fileexporter(ispresented:item:contenttypes:defaultfilename:oncompletion:oncancellation:) │ │ └── index.html │ ├── fileexporter(ispresented:items:contenttypes:oncompletion:oncancellation:) │ │ └── index.html │ ├── fileexporterfilenamelabel(_:)-6nlnf │ │ └── index.html │ ├── fileexporterfilenamelabel(_:)-8ay0g │ │ └── index.html │ ├── fileexporterfilenamelabel(_:)-a31c │ │ └── index.html │ ├── fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:) │ │ └── index.html │ ├── fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:oncancellation:) │ │ └── index.html │ ├── fileimporter(ispresented:allowedcontenttypes:oncompletion:) │ │ └── index.html │ ├── filemover(ispresented:file:oncompletion:) │ │ └── index.html │ ├── filemover(ispresented:file:oncompletion:oncancellation:) │ │ └── index.html │ ├── filemover(ispresented:files:oncompletion:) │ │ └── index.html │ ├── filemover(ispresented:files:oncompletion:oncancellation:) │ │ └── index.html │ ├── finddisabled(_:) │ │ └── index.html │ ├── findnavigator(ispresented:) │ │ └── index.html │ ├── fixedsize() │ │ └── index.html │ ├── fixedsize(horizontal:vertical:) │ │ └── index.html │ ├── flipsforrighttoleftlayoutdirection(_:) │ │ └── index.html │ ├── focusable(_:) │ │ └── index.html │ ├── focusable(_:interactions:) │ │ └── index.html │ ├── focused(_:) │ │ └── index.html │ ├── focused(_:equals:) │ │ └── index.html │ ├── focusedobject(_:)-1k369 │ │ └── index.html │ ├── focusedobject(_:)-89hsk │ │ └── index.html │ ├── focusedsceneobject(_:)-4g8e5 │ │ └── index.html │ ├── focusedsceneobject(_:)-65tb7 │ │ └── index.html │ ├── focusedscenevalue(_:) │ │ └── index.html │ ├── focusedscenevalue(_:_:)-6fz3y │ │ └── index.html │ ├── focusedscenevalue(_:_:)-8qn2l │ │ └── index.html │ ├── focusedvalue(_:) │ │ └── index.html │ ├── focusedvalue(_:_:)-8l92l │ │ └── index.html │ ├── focusedvalue(_:_:)-9bs2y │ │ └── index.html │ ├── focuseffectdisabled(_:) │ │ └── index.html │ ├── font(_:) │ │ └── index.html │ ├── fontdesign(_:) │ │ └── index.html │ ├── fontweight(_:) │ │ └── index.html │ ├── fontwidth(_:) │ │ └── index.html │ ├── foregroundcolor(_:) │ │ └── index.html │ ├── foregroundstyle(_:) │ │ └── index.html │ ├── foregroundstyle(_:_:) │ │ └── index.html │ ├── foregroundstyle(_:_:_:) │ │ └── index.html │ ├── formstyle(_:) │ │ └── index.html │ ├── frame() │ │ └── index.html │ ├── frame(minwidth:idealwidth:maxwidth:minheight:idealheight:maxheight:alignment:) │ │ └── index.html │ ├── frame(width:height:alignment:) │ │ └── index.html │ ├── fullscreencover(ispresented:ondismiss:content:) │ │ └── index.html │ ├── fullscreencover(item:ondismiss:content:) │ │ └── index.html │ ├── gaugestyle(_:) │ │ └── index.html │ ├── geometrygroup() │ │ └── index.html │ ├── gesture(_:) │ │ └── index.html │ ├── gesture(_:including:) │ │ └── index.html │ ├── gesture(_:isenabled:) │ │ └── index.html │ ├── gesture(_:name:isenabled:) │ │ └── index.html │ ├── grayscale(_:) │ │ └── index.html │ ├── gridcellanchor(_:) │ │ └── index.html │ ├── gridcellcolumns(_:) │ │ └── index.html │ ├── gridcellunsizedaxes(_:) │ │ └── index.html │ ├── gridcolumnalignment(_:) │ │ └── index.html │ ├── groupboxstyle(_:) │ │ └── index.html │ ├── handgestureshortcut(_:isenabled:) │ │ └── index.html │ ├── handlesexternalevents(preferring:allowing:) │ │ └── index.html │ ├── handlingstacktabbartoolbarbehavior(inputnavigationnodetype:) │ │ └── index.html │ ├── headerprominence(_:) │ │ └── index.html │ ├── help(_:)-47upp │ │ └── index.html │ ├── help(_:)-8xkkn │ │ └── index.html │ ├── help(_:)-mpzb │ │ └── index.html │ ├── hidden() │ │ └── index.html │ ├── highprioritygesture(_:including:) │ │ └── index.html │ ├── highprioritygesture(_:isenabled:) │ │ └── index.html │ ├── highprioritygesture(_:name:isenabled:) │ │ └── index.html │ ├── hovereffect(_:) │ │ └── index.html │ ├── hovereffect(_:isenabled:)-1cj68 │ │ └── index.html │ ├── hovereffect(_:isenabled:)-8t8mw │ │ └── index.html │ ├── hovereffectdisabled(_:) │ │ └── index.html │ ├── huerotation(_:) │ │ └── index.html │ ├── id(_:) │ │ └── index.html │ ├── ignoressafearea(_:edges:) │ │ └── index.html │ ├── imagescale(_:) │ │ └── index.html │ ├── index.html │ ├── indexviewstyle(_:) │ │ └── index.html │ ├── init() │ │ └── index.html │ ├── inspector(ispresented:content:) │ │ └── index.html │ ├── inspectorcolumnwidth(_:) │ │ └── index.html │ ├── inspectorcolumnwidth(min:ideal:max:) │ │ └── index.html │ ├── interactionactivitytrackingtag(_:) │ │ └── index.html │ ├── interactivedismissdisabled(_:) │ │ └── index.html │ ├── invalidatablecontent(_:) │ │ └── index.html │ ├── italic(_:) │ │ └── index.html │ ├── itemprovider(_:) │ │ └── index.html │ ├── kerning(_:) │ │ └── index.html │ ├── keyboardshortcut(_:)-3ajpb │ │ └── index.html │ ├── keyboardshortcut(_:)-3aznj │ │ └── index.html │ ├── keyboardshortcut(_:modifiers:) │ │ └── index.html │ ├── keyboardshortcut(_:modifiers:localization:) │ │ └── index.html │ ├── keyboardtype(_:) │ │ └── index.html │ ├── keyframeanimator(initialvalue:repeating:content:keyframes:) │ │ └── index.html │ ├── keyframeanimator(initialvalue:trigger:content:keyframes:) │ │ └── index.html │ ├── labeledcontentstyle(_:) │ │ └── index.html │ ├── labelshidden() │ │ └── index.html │ ├── labelstyle(_:) │ │ └── index.html │ ├── labelsvisibility(_:) │ │ └── index.html │ ├── layereffect(_:maxsampleoffset:isenabled:) │ │ └── index.html │ ├── layoutdirectionbehavior(_:) │ │ └── index.html │ ├── layoutpriority(_:) │ │ └── index.html │ ├── layoutvalue(key:value:) │ │ └── index.html │ ├── linelimit(_:)-42xri │ │ └── index.html │ ├── linelimit(_:)-5a8re │ │ └── index.html │ ├── linelimit(_:)-8gk8e │ │ └── index.html │ ├── linelimit(_:)-900gj │ │ └── index.html │ ├── linelimit(_:reservesspace:) │ │ └── index.html │ ├── linespacing(_:) │ │ └── index.html │ ├── listitemtint(_:)-4dn0v │ │ └── index.html │ ├── listitemtint(_:)-7tsf4 │ │ └── index.html │ ├── listrowbackground(_:) │ │ └── index.html │ ├── listrowinsets(_:) │ │ └── index.html │ ├── listrowseparator(_:edges:) │ │ └── index.html │ ├── listrowseparatortint(_:edges:) │ │ └── index.html │ ├── listrowspacing(_:) │ │ └── index.html │ ├── listsectionseparator(_:edges:) │ │ └── index.html │ ├── listsectionseparatortint(_:edges:) │ │ └── index.html │ ├── listsectionspacing(_:)-3m528 │ │ └── index.html │ ├── listsectionspacing(_:)-87sfy │ │ └── index.html │ ├── liststyle(_:) │ │ └── index.html │ ├── luminancetoalpha() │ │ └── index.html │ ├── mask(_:) │ │ └── index.html │ ├── mask(alignment:_:) │ │ └── index.html │ ├── matchedgeometryeffect(id:in:properties:anchor:issource:) │ │ └── index.html │ ├── matchedtransitionsource(id:in:) │ │ └── index.html │ ├── matchedtransitionsource(id:in:configuration:) │ │ └── index.html │ ├── materialactiveappearance(_:) │ │ └── index.html │ ├── menuactiondismissbehavior(_:) │ │ └── index.html │ ├── menuindicator(_:) │ │ └── index.html │ ├── menuorder(_:) │ │ └── index.html │ ├── menustyle(_:) │ │ └── index.html │ ├── minimumscalefactor(_:) │ │ └── index.html │ ├── modifier(_:) │ │ └── index.html │ ├── monospaced(_:) │ │ └── index.html │ ├── monospaceddigit() │ │ └── index.html │ ├── movedisabled(_:) │ │ └── index.html │ ├── multilinetextalignment(_:) │ │ └── index.html │ ├── navigationbarbackbuttonhidden(_:) │ │ └── index.html │ ├── navigationbarhidden(_:) │ │ └── index.html │ ├── navigationbaritems(leading:) │ │ └── index.html │ ├── navigationbaritems(leading:trailing:) │ │ └── index.html │ ├── navigationbaritems(trailing:) │ │ └── index.html │ ├── navigationbartitle(_:)-2qwqp │ │ └── index.html │ ├── navigationbartitle(_:)-919pw │ │ └── index.html │ ├── navigationbartitle(_:)-o0tv │ │ └── index.html │ ├── navigationbartitle(_:displaymode:)-1yzys │ │ └── index.html │ ├── navigationbartitle(_:displaymode:)-34afm │ │ └── index.html │ ├── navigationbartitle(_:displaymode:)-74emy │ │ └── index.html │ ├── navigationbartitledisplaymode(_:) │ │ └── index.html │ ├── navigationdestination(for:destination:) │ │ └── index.html │ ├── navigationdestination(ispresented:destination:) │ │ └── index.html │ ├── navigationdestination(item:destination:) │ │ └── index.html │ ├── navigationdocument(_:) │ │ └── index.html │ ├── navigationdocument(_:preview:)-36glk │ │ └── index.html │ ├── navigationdocument(_:preview:)-6sk63 │ │ └── index.html │ ├── navigationdocument(_:preview:)-6z1b7 │ │ └── index.html │ ├── navigationdocument(_:preview:)-7bdu6 │ │ └── index.html │ ├── navigationenvironmenttriggerhandler(_:) │ │ └── index.html │ ├── navigationsplitviewcolumnwidth(_:) │ │ └── index.html │ ├── navigationsplitviewcolumnwidth(min:ideal:max:) │ │ └── index.html │ ├── navigationsplitviewstyle(_:) │ │ └── index.html │ ├── navigationtitle(_:)-3k8kn │ │ └── index.html │ ├── navigationtitle(_:)-4mcbl │ │ └── index.html │ ├── navigationtitle(_:)-717h4 │ │ └── index.html │ ├── navigationtitle(_:)-9u6pq │ │ └── index.html │ ├── navigationtitle(_:)-s6bg │ │ └── index.html │ ├── navigationtransition(_:) │ │ └── index.html │ ├── navigationviewstyle(_:) │ │ └── index.html │ ├── offset(_:) │ │ └── index.html │ ├── offset(x:y:) │ │ └── index.html │ ├── onappear(perform:) │ │ └── index.html │ ├── onchange(of:initial:_:)-4tnfv │ │ └── index.html │ ├── onchange(of:initial:_:)-64ztn │ │ └── index.html │ ├── onchange(of:perform:) │ │ └── index.html │ ├── oncontinueuseractivity(_:perform:) │ │ └── index.html │ ├── oncontinuoushover(coordinatespace:perform:) │ │ └── index.html │ ├── ondisappear(perform:) │ │ └── index.html │ ├── ondrag(_:) │ │ └── index.html │ ├── ondrag(_:preview:) │ │ └── index.html │ ├── ondrop(of:delegate:)-8qq8l │ │ └── index.html │ ├── ondrop(of:delegate:)-fal9 │ │ └── index.html │ ├── ondrop(of:istargeted:perform:)-2r9hn │ │ └── index.html │ ├── ondrop(of:istargeted:perform:)-5bjt9 │ │ └── index.html │ ├── ondrop(of:istargeted:perform:)-881q1 │ │ └── index.html │ ├── ondrop(of:istargeted:perform:)-hg5u │ │ └── index.html │ ├── ongeometrychange(for:of:action:)-2zhwa │ │ └── index.html │ ├── ongeometrychange(for:of:action:)-8d6a4 │ │ └── index.html │ ├── onhover(perform:) │ │ └── index.html │ ├── onkeypress(_:action:) │ │ └── index.html │ ├── onkeypress(_:phases:action:) │ │ └── index.html │ ├── onkeypress(characters:phases:action:) │ │ └── index.html │ ├── onkeypress(keys:phases:action:) │ │ └── index.html │ ├── onkeypress(phases:action:) │ │ └── index.html │ ├── onlongpressgesture(minimumduration:maximumdistance:perform:onpressingchanged:) │ │ └── index.html │ ├── onlongpressgesture(minimumduration:maximumdistance:pressing:perform:) │ │ └── index.html │ ├── onlongpressgesture(minimumduration:perform:onpressingchanged:) │ │ └── index.html │ ├── onlongpressgesture(minimumduration:pressing:perform:) │ │ └── index.html │ ├── onopenurl(perform:) │ │ └── index.html │ ├── onpencildoubletap(perform:) │ │ └── index.html │ ├── onpencilsqueeze(perform:) │ │ └── index.html │ ├── onpreferencechange(_:perform:) │ │ └── index.html │ ├── onreceive(_:perform:) │ │ └── index.html │ ├── onscrollgeometrychange(for:of:action:) │ │ └── index.html │ ├── onscrollphasechange(_:)-1oaq3 │ │ └── index.html │ ├── onscrollphasechange(_:)-9xg8t │ │ └── index.html │ ├── onscrolltargetvisibilitychange(idtype:threshold:_:) │ │ └── index.html │ ├── onscrollvisibilitychange(threshold:_:) │ │ └── index.html │ ├── onsubmit(of:_:) │ │ └── index.html │ ├── ontapgesture(count:coordinatespace:perform:) │ │ └── index.html │ ├── ontapgesture(count:perform:) │ │ └── index.html │ ├── opacity(_:) │ │ └── index.html │ ├── overlay(_:alignment:) │ │ └── index.html │ ├── overlay(_:ignoressafeareaedges:) │ │ └── index.html │ ├── overlay(_:in:fillstyle:) │ │ └── index.html │ ├── overlay(alignment:content:) │ │ └── index.html │ ├── overlaypreferencevalue(_:_:) │ │ └── index.html │ ├── overlaypreferencevalue(_:alignment:_:) │ │ └── index.html │ ├── padding(_:)-9o3y0 │ │ └── index.html │ ├── padding(_:)-9rh8s │ │ └── index.html │ ├── padding(_:_:) │ │ └── index.html │ ├── paletteselectioneffect(_:) │ │ └── index.html │ ├── persistentsystemoverlays(_:) │ │ └── index.html │ ├── phaseanimator(_:content:animation:) │ │ └── index.html │ ├── phaseanimator(_:trigger:content:animation:) │ │ └── index.html │ ├── pickerstyle(_:) │ │ └── index.html │ ├── popover(ispresented:attachmentanchor:arrowedge:content:) │ │ └── index.html │ ├── popover(item:attachmentanchor:arrowedge:content:) │ │ └── index.html │ ├── position(_:) │ │ └── index.html │ ├── position(x:y:) │ │ └── index.html │ ├── preference(key:value:) │ │ └── index.html │ ├── preferredcolorscheme(_:) │ │ └── index.html │ ├── presentationbackground(_:) │ │ └── index.html │ ├── presentationbackground(alignment:content:) │ │ └── index.html │ ├── presentationbackgroundinteraction(_:) │ │ └── index.html │ ├── presentationcompactadaptation(_:) │ │ └── index.html │ ├── presentationcompactadaptation(horizontal:vertical:) │ │ └── index.html │ ├── presentationcontentinteraction(_:) │ │ └── index.html │ ├── presentationcornerradius(_:) │ │ └── index.html │ ├── presentationdetents(_:) │ │ └── index.html │ ├── presentationdetents(_:selection:) │ │ └── index.html │ ├── presentationdragindicator(_:) │ │ └── index.html │ ├── presentationsizing(_:) │ │ └── index.html │ ├── presentingnavigationsource(id:) │ │ └── index.html │ ├── previewcontext(_:) │ │ └── index.html │ ├── previewdevice(_:) │ │ └── index.html │ ├── previewdisplayname(_:) │ │ └── index.html │ ├── previewinterfaceorientation(_:) │ │ └── index.html │ ├── previewlayout(_:) │ │ └── index.html │ ├── privacysensitive(_:) │ │ └── index.html │ ├── progressviewstyle(_:) │ │ └── index.html │ ├── projectioneffect(_:) │ │ └── index.html │ ├── redacted(reason:) │ │ └── index.html │ ├── refreshable(action:) │ │ └── index.html │ ├── registercustompresentablenavigationnodes(_:) │ │ └── index.html │ ├── renameaction(_:)-3qaps │ │ └── index.html │ ├── renameaction(_:)-5btzm │ │ └── index.html │ ├── replacedisabled(_:) │ │ └── index.html │ ├── rotation3deffect(_:axis:anchor:anchorz:perspective:) │ │ └── index.html │ ├── rotationeffect(_:anchor:) │ │ └── index.html │ ├── safeareainset(edge:alignment:spacing:content:)-3gbru │ │ └── index.html │ ├── safeareainset(edge:alignment:spacing:content:)-6piqt │ │ └── index.html │ ├── safeareapadding(_:)-11twu │ │ └── index.html │ ├── safeareapadding(_:)-3nzne │ │ └── index.html │ ├── safeareapadding(_:_:) │ │ └── index.html │ ├── saturation(_:) │ │ └── index.html │ ├── scaledtofill() │ │ └── index.html │ ├── scaledtofit() │ │ └── index.html │ ├── scaleeffect(_:anchor:)-7v89g │ │ └── index.html │ ├── scaleeffect(_:anchor:)-9e3yl │ │ └── index.html │ ├── scaleeffect(x:y:anchor:) │ │ └── index.html │ ├── scenepadding(_:) │ │ └── index.html │ ├── scenepadding(_:edges:) │ │ └── index.html │ ├── scrollbouncebehavior(_:axes:) │ │ └── index.html │ ├── scrollclipdisabled(_:) │ │ └── index.html │ ├── scrollcontentbackground(_:) │ │ └── index.html │ ├── scrolldisabled(_:) │ │ └── index.html │ ├── scrolldismisseskeyboard(_:) │ │ └── index.html │ ├── scrollindicators(_:axes:) │ │ └── index.html │ ├── scrollindicatorsflash(onappear:) │ │ └── index.html │ ├── scrollindicatorsflash(trigger:) │ │ └── index.html │ ├── scrollinputbehavior(_:for:) │ │ └── index.html │ ├── scrollposition(_:anchor:) │ │ └── index.html │ ├── scrollposition(id:anchor:) │ │ └── index.html │ ├── scrolltargetbehavior(_:) │ │ └── index.html │ ├── scrolltargetlayout(isenabled:) │ │ └── index.html │ ├── scrolltransition(_:axis:transition:) │ │ └── index.html │ ├── scrolltransition(topleading:bottomtrailing:axis:transition:) │ │ └── index.html │ ├── searchable(text:editabletokens:ispresented:placement:prompt:token:)-4d0f4 │ │ └── index.html │ ├── searchable(text:editabletokens:ispresented:placement:prompt:token:)-7c6n0 │ │ └── index.html │ ├── searchable(text:editabletokens:ispresented:placement:prompt:token:)-9hsiq │ │ └── index.html │ ├── searchable(text:editabletokens:placement:prompt:token:)-12gl9 │ │ └── index.html │ ├── searchable(text:editabletokens:placement:prompt:token:)-9lqdc │ │ └── index.html │ ├── searchable(text:editabletokens:placement:prompt:token:)-9qu08 │ │ └── index.html │ ├── searchable(text:ispresented:placement:prompt:)-36fo0 │ │ └── index.html │ ├── searchable(text:ispresented:placement:prompt:)-3jz42 │ │ └── index.html │ ├── searchable(text:ispresented:placement:prompt:)-7vz35 │ │ └── index.html │ ├── searchable(text:placement:prompt:)-50llr │ │ └── index.html │ ├── searchable(text:placement:prompt:)-7w2ne │ │ └── index.html │ ├── searchable(text:placement:prompt:)-9ih8p │ │ └── index.html │ ├── searchable(text:placement:prompt:suggestions:)-2a8le │ │ └── index.html │ ├── searchable(text:placement:prompt:suggestions:)-2vy4i │ │ └── index.html │ ├── searchable(text:placement:prompt:suggestions:)-6b5n3 │ │ └── index.html │ ├── searchable(text:tokens:ispresented:placement:prompt:token:)-3kvc3 │ │ └── index.html │ ├── searchable(text:tokens:ispresented:placement:prompt:token:)-4zpn7 │ │ └── index.html │ ├── searchable(text:tokens:ispresented:placement:prompt:token:)-8r2pa │ │ └── index.html │ ├── searchable(text:tokens:placement:prompt:token:)-2wqbx │ │ └── index.html │ ├── searchable(text:tokens:placement:prompt:token:)-87x75 │ │ └── index.html │ ├── searchable(text:tokens:placement:prompt:token:)-9crhs │ │ └── index.html │ ├── searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-260yz │ │ └── index.html │ ├── searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-92a5x │ │ └── index.html │ ├── searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-wq74 │ │ └── index.html │ ├── searchable(text:tokens:suggestedtokens:placement:prompt:token:)-39c24 │ │ └── index.html │ ├── searchable(text:tokens:suggestedtokens:placement:prompt:token:)-7j3g2 │ │ └── index.html │ ├── searchable(text:tokens:suggestedtokens:placement:prompt:token:)-8nbc │ │ └── index.html │ ├── searchcompletion(_:) │ │ └── index.html │ ├── searchdictationbehavior(_:) │ │ └── index.html │ ├── searchfocused(_:) │ │ └── index.html │ ├── searchfocused(_:equals:) │ │ └── index.html │ ├── searchpresentationtoolbarbehavior(_:) │ │ └── index.html │ ├── searchscopes(_:activation:_:) │ │ └── index.html │ ├── searchscopes(_:scopes:) │ │ └── index.html │ ├── searchsuggestions(_:) │ │ └── index.html │ ├── searchsuggestions(_:for:) │ │ └── index.html │ ├── sectionactions(content:) │ │ └── index.html │ ├── selectiondisabled(_:) │ │ └── index.html │ ├── sensoryfeedback(_:trigger:) │ │ └── index.html │ ├── sensoryfeedback(_:trigger:condition:) │ │ └── index.html │ ├── sensoryfeedback(trigger:_:) │ │ └── index.html │ ├── shadow(color:radius:x:y:) │ │ └── index.html │ ├── sheet(ispresented:ondismiss:content:) │ │ └── index.html │ ├── sheet(item:ondismiss:content:) │ │ └── index.html │ ├── simultaneousgesture(_:including:) │ │ └── index.html │ ├── simultaneousgesture(_:isenabled:) │ │ └── index.html │ ├── simultaneousgesture(_:name:isenabled:) │ │ └── index.html │ ├── speechadjustedpitch(_:) │ │ └── index.html │ ├── speechalwaysincludespunctuation(_:) │ │ └── index.html │ ├── speechannouncementsqueued(_:) │ │ └── index.html │ ├── speechspellsoutcharacters(_:) │ │ └── index.html │ ├── springloadingbehavior(_:) │ │ └── index.html │ ├── statusbar(hidden:) │ │ └── index.html │ ├── statusbarhidden(_:) │ │ └── index.html │ ├── strikethrough(_:pattern:color:) │ │ └── index.html │ ├── submitlabel(_:) │ │ └── index.html │ ├── submitscope(_:) │ │ └── index.html │ ├── swipeactions(edge:allowsfullswipe:content:) │ │ └── index.html │ ├── symboleffect(_:options:isactive:) │ │ └── index.html │ ├── symboleffect(_:options:value:) │ │ └── index.html │ ├── symboleffectsremoved(_:) │ │ └── index.html │ ├── symbolrenderingmode(_:) │ │ └── index.html │ ├── symbolvariant(_:) │ │ └── index.html │ ├── tabitem(_:) │ │ └── index.html │ ├── tablecolumnheaders(_:) │ │ └── index.html │ ├── tablestyle(_:) │ │ └── index.html │ ├── tabviewcustomization(_:) │ │ └── index.html │ ├── tabviewsidebarbottombar(content:) │ │ └── index.html │ ├── tabviewsidebarfooter(content:) │ │ └── index.html │ ├── tabviewsidebarheader(content:) │ │ └── index.html │ ├── tabviewstyle(_:) │ │ └── index.html │ ├── tag(_:includeoptional:) │ │ └── index.html │ ├── task(id:priority:_:) │ │ └── index.html │ ├── task(priority:_:) │ │ └── index.html │ ├── textcase(_:) │ │ └── index.html │ ├── textcontenttype(_:) │ │ └── index.html │ ├── texteditorstyle(_:) │ │ └── index.html │ ├── textfieldstyle(_:) │ │ └── index.html │ ├── textinputautocapitalization(_:) │ │ └── index.html │ ├── textrenderer(_:) │ │ └── index.html │ ├── textscale(_:isenabled:) │ │ └── index.html │ ├── textselection(_:) │ │ └── index.html │ ├── textselectionaffinity(_:) │ │ └── index.html │ ├── tint(_:) │ │ └── index.html │ ├── togglestyle(_:) │ │ └── index.html │ ├── toolbar(_:for:) │ │ └── index.html │ ├── toolbar(content:)-2umaj │ │ └── index.html │ ├── toolbar(content:)-4hqk8 │ │ └── index.html │ ├── toolbar(id:content:) │ │ └── index.html │ ├── toolbar(removing:) │ │ └── index.html │ ├── toolbarbackground(_:for:) │ │ └── index.html │ ├── toolbarbackgroundvisibility(_:for:) │ │ └── index.html │ ├── toolbarcolorscheme(_:for:) │ │ └── index.html │ ├── toolbarforegroundstyle(_:for:) │ │ └── index.html │ ├── toolbarrole(_:) │ │ └── index.html │ ├── toolbartitledisplaymode(_:) │ │ └── index.html │ ├── toolbartitlemenu(content:) │ │ └── index.html │ ├── toolbarvisibility(_:for:) │ │ └── index.html │ ├── tracking(_:) │ │ └── index.html │ ├── transaction(_:) │ │ └── index.html │ ├── transaction(_:body:) │ │ └── index.html │ ├── transaction(value:_:) │ │ └── index.html │ ├── transformanchorpreference(key:value:transform:) │ │ └── index.html │ ├── transformeffect(_:) │ │ └── index.html │ ├── transformenvironment(_:transform:) │ │ └── index.html │ ├── transformpreference(_:_:) │ │ └── index.html │ ├── transition(_:) │ │ └── index.html │ ├── truncationmode(_:) │ │ └── index.html │ ├── typeselectequivalent(_:)-2bcpo │ │ └── index.html │ ├── typeselectequivalent(_:)-2ci37 │ │ └── index.html │ ├── typeselectequivalent(_:)-2cjx8 │ │ └── index.html │ ├── typesettinglanguage(_:isenabled:)-4nl8a │ │ └── index.html │ ├── typesettinglanguage(_:isenabled:)-9yu8f │ │ └── index.html │ ├── underline(_:pattern:color:) │ │ └── index.html │ ├── unredacted() │ │ └── index.html │ ├── useractivity(_:element:_:) │ │ └── index.html │ ├── useractivity(_:isactive:_:) │ │ └── index.html │ ├── view-implementations │ │ └── index.html │ ├── visualeffect(_:) │ │ └── index.html │ ├── windowtoolbarfullscreenvisibility(_:) │ │ └── index.html │ ├── writingtoolsbehavior(_:) │ │ └── index.html │ └── zindex(_:) │ │ └── index.html │ ├── tabsselectitemnavigationcommand │ ├── canexecute(on:) │ │ └── index.html │ ├── execute(on:) │ │ └── index.html │ ├── index.html │ ├── init(itemid:) │ │ └── index.html │ ├── navigationcommand-implementations │ │ └── index.html │ ├── perform(animated:action:) │ │ └── index.html │ └── tabsselectitem(id:) │ │ └── index.html │ └── uikit │ ├── index.html │ └── uinavigationcontroller │ ├── gesturerecognizershouldbegin(_:) │ └── index.html │ ├── index.html │ ├── uigesturerecognizerdelegate-implementations │ └── index.html │ └── viewdidload() │ └── index.html ├── favicon.ico ├── favicon.svg ├── img ├── added-icon.832a5d2c.svg ├── deprecated-icon.7bf1740a.svg └── modified-icon.efb2697d.svg ├── index.html ├── index ├── availability.index ├── data.mdb ├── index.json └── navigator.index ├── js ├── 104.fe5974d0.js ├── 337.274a8ccc.js ├── 842.a7e2003a.js ├── 866.7ae93681.js ├── chunk-vendors.bdb7cbba.js ├── documentation-topic.29bf51a3.js ├── highlight-js-bash-js.702f0c5c.js ├── highlight-js-c-js.063069d3.js ├── highlight-js-cpp-js.458a9ae4.js ├── highlight-js-css-js.bfc4251f.js ├── highlight-js-custom-markdown.78c9f6ed.js ├── highlight-js-custom-swift.738731d1.js ├── highlight-js-diff-js.4db9a783.js ├── highlight-js-http-js.f78e83c2.js ├── highlight-js-java-js.4fe21e94.js ├── highlight-js-javascript-js.dfc9d16d.js ├── highlight-js-json-js.2a1856ba.js ├── highlight-js-llvm-js.26121771.js ├── highlight-js-markdown-js.a2f456af.js ├── highlight-js-objectivec-js.74dea052.js ├── highlight-js-perl-js.da6eda82.js ├── highlight-js-php-js.c458ffa4.js ├── highlight-js-python-js.60354774.js ├── highlight-js-ruby-js.7272231f.js ├── highlight-js-scss-js.adcd11a2.js ├── highlight-js-shell-js.0ad5b20f.js ├── highlight-js-swift-js.bdd5bff5.js ├── highlight-js-xml-js.0d78f903.js ├── index.0d775bb6.js ├── topic.37e71576.js └── tutorials-overview.acb09e8a.js └── metadata.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/.gitignore -------------------------------------------------------------------------------- /.spi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/.spi.yml -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/SwiftUINavigation.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/SwiftUINavigation.xcscheme -------------------------------------------------------------------------------- /Examples/Examples.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/Examples.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/Examples/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/AppDelegate.swift -------------------------------------------------------------------------------- /Examples/Examples/Dependencies/Dependencies.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Dependencies/Dependencies.swift -------------------------------------------------------------------------------- /Examples/Examples/Examples.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Examples.entitlements -------------------------------------------------------------------------------- /Examples/Examples/ExamplesApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/ExamplesApp.swift -------------------------------------------------------------------------------- /Examples/Examples/Modules/ActionableList/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Modules/ActionableList/.gitignore -------------------------------------------------------------------------------- /Examples/Examples/Modules/ActionableList/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Modules/ActionableList/Package.swift -------------------------------------------------------------------------------- /Examples/Examples/Modules/App/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Modules/App/.gitignore -------------------------------------------------------------------------------- /Examples/Examples/Modules/App/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Modules/App/Package.swift -------------------------------------------------------------------------------- /Examples/Examples/Modules/App/Sources/App/AppNavigationModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Modules/App/Sources/App/AppNavigationModel.swift -------------------------------------------------------------------------------- /Examples/Examples/Modules/ArchitectureExample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Modules/ArchitectureExample/.gitignore -------------------------------------------------------------------------------- /Examples/Examples/Modules/ArchitectureExample/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Modules/ArchitectureExample/Package.swift -------------------------------------------------------------------------------- /Examples/Examples/Modules/CustomConfirmationDialog/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Modules/CustomConfirmationDialog/.gitignore -------------------------------------------------------------------------------- /Examples/Examples/Modules/CustomConfirmationDialog/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Modules/CustomConfirmationDialog/Package.swift -------------------------------------------------------------------------------- /Examples/Examples/Modules/CustomNavigationBar/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Modules/CustomNavigationBar/.gitignore -------------------------------------------------------------------------------- /Examples/Examples/Modules/CustomNavigationBar/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Modules/CustomNavigationBar/Package.swift -------------------------------------------------------------------------------- /Examples/Examples/Modules/LockedApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Modules/LockedApp/.gitignore -------------------------------------------------------------------------------- /Examples/Examples/Modules/LockedApp/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Modules/LockedApp/Package.swift -------------------------------------------------------------------------------- /Examples/Examples/Modules/LockedApp/Sources/LockedApp/LockedAppView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Modules/LockedApp/Sources/LockedApp/LockedAppView.swift -------------------------------------------------------------------------------- /Examples/Examples/Modules/LockedApp/Sources/LockedApp/LockedAppViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Modules/LockedApp/Sources/LockedApp/LockedAppViewModel.swift -------------------------------------------------------------------------------- /Examples/Examples/Modules/MainTabs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Modules/MainTabs/.gitignore -------------------------------------------------------------------------------- /Examples/Examples/Modules/MainTabs/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Modules/MainTabs/Package.swift -------------------------------------------------------------------------------- /Examples/Examples/Modules/MainTabs/Sources/MainTabs/MainTabsNavigationModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Modules/MainTabs/Sources/MainTabs/MainTabsNavigationModel.swift -------------------------------------------------------------------------------- /Examples/Examples/Modules/OnboardingQuestion/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Modules/OnboardingQuestion/.gitignore -------------------------------------------------------------------------------- /Examples/Examples/Modules/OnboardingQuestion/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Modules/OnboardingQuestion/Package.swift -------------------------------------------------------------------------------- /Examples/Examples/Modules/OnboardingResult/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Modules/OnboardingResult/.gitignore -------------------------------------------------------------------------------- /Examples/Examples/Modules/OnboardingResult/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Modules/OnboardingResult/Package.swift -------------------------------------------------------------------------------- /Examples/Examples/Modules/SegmentedTabs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Modules/SegmentedTabs/.gitignore -------------------------------------------------------------------------------- /Examples/Examples/Modules/SegmentedTabs/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Modules/SegmentedTabs/Package.swift -------------------------------------------------------------------------------- /Examples/Examples/Modules/SegmentedTabs/Sources/SegmentedTabs/SegmentedTab.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Modules/SegmentedTabs/Sources/SegmentedTabs/SegmentedTab.swift -------------------------------------------------------------------------------- /Examples/Examples/Modules/Start/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Modules/Start/.gitignore -------------------------------------------------------------------------------- /Examples/Examples/Modules/Start/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Modules/Start/Package.swift -------------------------------------------------------------------------------- /Examples/Examples/Modules/Start/Sources/Start/StartNavigationModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Modules/Start/Sources/Start/StartNavigationModel.swift -------------------------------------------------------------------------------- /Examples/Examples/Modules/Start/Sources/Start/StartView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Modules/Start/Sources/Start/StartView.swift -------------------------------------------------------------------------------- /Examples/Examples/Modules/Start/Sources/Start/StartViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Modules/Start/Sources/Start/StartViewModel.swift -------------------------------------------------------------------------------- /Examples/Examples/Modules/Subscription/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Modules/Subscription/.gitignore -------------------------------------------------------------------------------- /Examples/Examples/Modules/Subscription/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Modules/Subscription/Package.swift -------------------------------------------------------------------------------- /Examples/Examples/Modules/SubscriptionFreemium/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Modules/SubscriptionFreemium/.gitignore -------------------------------------------------------------------------------- /Examples/Examples/Modules/SubscriptionFreemium/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Modules/SubscriptionFreemium/Package.swift -------------------------------------------------------------------------------- /Examples/Examples/Modules/SubscriptionPremium/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Modules/SubscriptionPremium/.gitignore -------------------------------------------------------------------------------- /Examples/Examples/Modules/SubscriptionPremium/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Modules/SubscriptionPremium/Package.swift -------------------------------------------------------------------------------- /Examples/Examples/Modules/Waiting/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Modules/Waiting/.gitignore -------------------------------------------------------------------------------- /Examples/Examples/Modules/Waiting/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Modules/Waiting/Package.swift -------------------------------------------------------------------------------- /Examples/Examples/Modules/Waiting/Sources/Waiting/WaitingNavigationModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Modules/Waiting/Sources/Waiting/WaitingNavigationModel.swift -------------------------------------------------------------------------------- /Examples/Examples/Modules/Waiting/Sources/Waiting/WaitingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Modules/Waiting/Sources/Waiting/WaitingView.swift -------------------------------------------------------------------------------- /Examples/Examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/README.md -------------------------------------------------------------------------------- /Examples/Examples/Resources/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Resources/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Examples/Examples/Resources/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Resources/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /Examples/Examples/Resources/Assets.xcassets/AppIcon.appiconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Resources/Assets.xcassets/AppIcon.appiconset/128.png -------------------------------------------------------------------------------- /Examples/Examples/Resources/Assets.xcassets/AppIcon.appiconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Resources/Assets.xcassets/AppIcon.appiconset/16.png -------------------------------------------------------------------------------- /Examples/Examples/Resources/Assets.xcassets/AppIcon.appiconset/256 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Resources/Assets.xcassets/AppIcon.appiconset/256 1.png -------------------------------------------------------------------------------- /Examples/Examples/Resources/Assets.xcassets/AppIcon.appiconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Resources/Assets.xcassets/AppIcon.appiconset/256.png -------------------------------------------------------------------------------- /Examples/Examples/Resources/Assets.xcassets/AppIcon.appiconset/32 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Resources/Assets.xcassets/AppIcon.appiconset/32 1.png -------------------------------------------------------------------------------- /Examples/Examples/Resources/Assets.xcassets/AppIcon.appiconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Resources/Assets.xcassets/AppIcon.appiconset/32.png -------------------------------------------------------------------------------- /Examples/Examples/Resources/Assets.xcassets/AppIcon.appiconset/512 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Resources/Assets.xcassets/AppIcon.appiconset/512 1.png -------------------------------------------------------------------------------- /Examples/Examples/Resources/Assets.xcassets/AppIcon.appiconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Resources/Assets.xcassets/AppIcon.appiconset/512.png -------------------------------------------------------------------------------- /Examples/Examples/Resources/Assets.xcassets/AppIcon.appiconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Resources/Assets.xcassets/AppIcon.appiconset/64.png -------------------------------------------------------------------------------- /Examples/Examples/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/Examples/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Resources/Info.plist -------------------------------------------------------------------------------- /Examples/Examples/Shared/Shared/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Shared/Shared/.gitignore -------------------------------------------------------------------------------- /Examples/Examples/Shared/Shared/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Shared/Shared/Package.swift -------------------------------------------------------------------------------- /Examples/Examples/Shared/Shared/Sources/Shared/Environment/EnvironmentValues+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Shared/Shared/Sources/Shared/Environment/EnvironmentValues+.swift -------------------------------------------------------------------------------- /Examples/Examples/Shared/Shared/Sources/Shared/Navigation/Windows/WindowID.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Shared/Shared/Sources/Shared/Navigation/Windows/WindowID.swift -------------------------------------------------------------------------------- /Examples/Examples/Shared/Shared/Sources/Shared/Services/FlagsRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Shared/Shared/Sources/Shared/Services/FlagsRepository.swift -------------------------------------------------------------------------------- /Examples/Examples/Shared/Shared/Sources/Shared/Services/NotificationsService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Shared/Shared/Sources/Shared/Services/NotificationsService.swift -------------------------------------------------------------------------------- /Examples/Examples/Shared/Shared/Sources/Shared/UI/CustomTextEditor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Shared/Shared/Sources/Shared/UI/CustomTextEditor.swift -------------------------------------------------------------------------------- /Examples/Examples/Shared/Shared/Sources/Shared/UI/DismissButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Shared/Shared/Sources/Shared/UI/DismissButton.swift -------------------------------------------------------------------------------- /Examples/Examples/Shared/Shared/Sources/Shared/UI/IdentifiableViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Shared/Shared/Sources/Shared/UI/IdentifiableViewModel.swift -------------------------------------------------------------------------------- /Examples/Examples/Shared/Shared/Sources/Shared/UI/PrimaryButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Shared/Shared/Sources/Shared/UI/PrimaryButton.swift -------------------------------------------------------------------------------- /Examples/Examples/Shared/Shared/Sources/Shared/UI/ShakeGesture.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Shared/Shared/Sources/Shared/UI/ShakeGesture.swift -------------------------------------------------------------------------------- /Examples/Examples/Shared/Shared/Sources/Shared/UI/SharedColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Shared/Shared/Sources/Shared/UI/SharedColor.swift -------------------------------------------------------------------------------- /Examples/Examples/Windows/AppWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Windows/AppWindow.swift -------------------------------------------------------------------------------- /Examples/Examples/Windows/WaitingWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Examples/Examples/Windows/WaitingWindow.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/README.md -------------------------------------------------------------------------------- /READMEAssets/appIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/READMEAssets/appIcon.png -------------------------------------------------------------------------------- /READMEAssets/commands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/READMEAssets/commands.png -------------------------------------------------------------------------------- /READMEAssets/debugging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/READMEAssets/debugging.png -------------------------------------------------------------------------------- /READMEAssets/flows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/READMEAssets/flows.png -------------------------------------------------------------------------------- /READMEAssets/relationships.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/READMEAssets/relationships.png -------------------------------------------------------------------------------- /Sources/Macros/Implementations/NavigationModelMacro.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/Macros/Implementations/NavigationModelMacro.swift -------------------------------------------------------------------------------- /Sources/Macros/Implementations/StackRootNavigationModelMacro.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/Macros/Implementations/StackRootNavigationModelMacro.swift -------------------------------------------------------------------------------- /Sources/Macros/Implementations/SwitchedNavigationModelMacro.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/Macros/Implementations/SwitchedNavigationModelMacro.swift -------------------------------------------------------------------------------- /Sources/Macros/Implementations/TabsRootNavigationModelMacro.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/Macros/Implementations/TabsRootNavigationModelMacro.swift -------------------------------------------------------------------------------- /Sources/Macros/SwiftUINavigationMacros.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/Macros/SwiftUINavigationMacros.swift -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Command/NavigationCommand+Static.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/SwiftUINavigation/Command/NavigationCommand+Static.swift -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Command/NavigationCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/SwiftUINavigation/Command/NavigationCommand.swift -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Command/Predefined/DismissNavigationCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/SwiftUINavigation/Command/Predefined/DismissNavigationCommand.swift -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Command/Predefined/DismissWindowNavigationCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/SwiftUINavigation/Command/Predefined/DismissWindowNavigationCommand.swift -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Command/Predefined/OpenURLNavigationCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/SwiftUINavigation/Command/Predefined/OpenURLNavigationCommand.swift -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Command/Predefined/OpenWindowNavigationCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/SwiftUINavigation/Command/Predefined/OpenWindowNavigationCommand.swift -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Command/Predefined/PresentNavigationCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/SwiftUINavigation/Command/Predefined/PresentNavigationCommand.swift -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Command/Predefined/ResolvedHideNavigationCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/SwiftUINavigation/Command/Predefined/ResolvedHideNavigationCommand.swift -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Command/Predefined/StackAppendNavigationCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/SwiftUINavigation/Command/Predefined/StackAppendNavigationCommand.swift -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Command/Predefined/StackDropLastNavigationCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/SwiftUINavigation/Command/Predefined/StackDropLastNavigationCommand.swift -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Command/Predefined/StackDropToRootNavigationCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/SwiftUINavigation/Command/Predefined/StackDropToRootNavigationCommand.swift -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Command/Predefined/StackMapNavigationCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/SwiftUINavigation/Command/Predefined/StackMapNavigationCommand.swift -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Command/Predefined/StackSetRootNavigationCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/SwiftUINavigation/Command/Predefined/StackSetRootNavigationCommand.swift -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Command/Predefined/SwitchNavigationCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/SwiftUINavigation/Command/Predefined/SwitchNavigationCommand.swift -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Command/Predefined/TabsSelectItemNavigationCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/SwiftUINavigation/Command/Predefined/TabsSelectItemNavigationCommand.swift -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Config/NavigationConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/SwiftUINavigation/Config/NavigationConfig.swift -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Environment/EnvironmentNavigationModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/SwiftUINavigation/Environment/EnvironmentNavigationModel.swift -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Environment/EnvironmentValues+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/SwiftUINavigation/Environment/EnvironmentValues+.swift -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Extensions/UINavigationController+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/SwiftUINavigation/Extensions/UINavigationController+.swift -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Macros/Macros.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/SwiftUINavigation/Macros/Macros.swift -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Message/FinishedNavigationMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/SwiftUINavigation/Message/FinishedNavigationMessage.swift -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Message/NavigationMessage.swift: -------------------------------------------------------------------------------- 1 | public protocol NavigationMessage {} 2 | -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Message/NavigationMessageListener.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/SwiftUINavigation/Message/NavigationMessageListener.swift -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Models/Main/AnyNavigationModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/SwiftUINavigation/Models/Main/AnyNavigationModel.swift -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Models/Main/CommonNavigationModelState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/SwiftUINavigation/Models/Main/CommonNavigationModelState.swift -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Models/Main/EquatableNavigationModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/SwiftUINavigation/Models/Main/EquatableNavigationModel.swift -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Models/Main/NavigationCommandExecuter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/SwiftUINavigation/Models/Main/NavigationCommandExecuter.swift -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Models/Main/NavigationModel+Iterating.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/SwiftUINavigation/Models/Main/NavigationModel+Iterating.swift -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Models/Main/NavigationModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/SwiftUINavigation/Models/Main/NavigationModel.swift -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Models/Predefined/SFSafari/SFSafariInputData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/SwiftUINavigation/Models/Predefined/SFSafari/SFSafariInputData.swift -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Models/Predefined/SFSafari/SFSafariNavigationModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/SwiftUINavigation/Models/Predefined/SFSafari/SFSafariNavigationModel.swift -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Models/Predefined/SFSafari/SFSafariView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/SwiftUINavigation/Models/Predefined/SFSafari/SFSafariView.swift -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Models/Predefined/Stack/StackNavigationDestination.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/SwiftUINavigation/Models/Predefined/Stack/StackNavigationDestination.swift -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Models/Predefined/Stack/StackNavigationModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/SwiftUINavigation/Models/Predefined/Stack/StackNavigationModel.swift -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Models/Predefined/Stack/StackRootNavigationModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/SwiftUINavigation/Models/Predefined/Stack/StackRootNavigationModel.swift -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Models/Predefined/Stack/StackTabBarToolbarBehavior.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/SwiftUINavigation/Models/Predefined/Stack/StackTabBarToolbarBehavior.swift -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Models/Predefined/Switched/SwitchedNavigationModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/SwiftUINavigation/Models/Predefined/Switched/SwitchedNavigationModel.swift -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Models/Predefined/Tabs/DefaultTabModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/SwiftUINavigation/Models/Predefined/Tabs/DefaultTabModel.swift -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Models/Predefined/Tabs/TabModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/SwiftUINavigation/Models/Predefined/Tabs/TabModel.swift -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Models/Predefined/Tabs/TabsRootNavigationModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/SwiftUINavigation/Models/Predefined/Tabs/TabsRootNavigationModel.swift -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Models/Predefined/Tabs/TabsRootNavigationModelView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/SwiftUINavigation/Models/Predefined/Tabs/TabsRootNavigationModelView.swift -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Models/Presented/Alert/AlertInputData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/SwiftUINavigation/Models/Presented/Alert/AlertInputData.swift -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Models/Presented/Alert/AlertNavigationModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/SwiftUINavigation/Models/Presented/Alert/AlertNavigationModel.swift -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Models/Presented/PresentedNavigationModel+Static.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/SwiftUINavigation/Models/Presented/PresentedNavigationModel+Static.swift -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Models/Presented/PresentedNavigationModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/SwiftUINavigation/Models/Presented/PresentedNavigationModel.swift -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Models/Resolving/NavigationModelResolvedView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/SwiftUINavigation/Models/Resolving/NavigationModelResolvedView.swift -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/NavigationEnvironmentTrigger/Triggers/NavigationEnvironmentTrigger.swift: -------------------------------------------------------------------------------- 1 | public protocol NavigationEnvironmentTrigger {} 2 | -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Root/RootNavigationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/SwiftUINavigation/Root/RootNavigationView.swift -------------------------------------------------------------------------------- /Sources/SwiftUINavigation/Transitions/AnyNavigationTransition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/Sources/SwiftUINavigation/Transitions/AnyNavigationTransition.swift -------------------------------------------------------------------------------- /docs/css/866.60f074fd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/css/866.60f074fd.css -------------------------------------------------------------------------------- /docs/css/989.4f123103.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/css/989.4f123103.css -------------------------------------------------------------------------------- /docs/css/documentation-topic.99224ad2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/css/documentation-topic.99224ad2.css -------------------------------------------------------------------------------- /docs/css/index.3a335429.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/css/index.3a335429.css -------------------------------------------------------------------------------- /docs/css/topic.4be8f56d.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/css/topic.4be8f56d.css -------------------------------------------------------------------------------- /docs/css/tutorials-overview.7942d777.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/css/tutorials-overview.7942d777.css -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/alertinputdata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/alertinputdata.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/alertinputdata/action.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/alertinputdata/action.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/alertinputdata/action/role.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/alertinputdata/action/role.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/alertinputdata/action/role/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/alertinputdata/action/role/!=(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/alertinputdata/action/role/cancel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/alertinputdata/action/role/cancel.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/alertpresentednavigationnode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/alertpresentednavigationnode.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/alertpresentednavigationnode/node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/alertpresentednavigationnode/node.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/anynavigationnode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/anynavigationnode.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/anynavigationnode/body.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/anynavigationnode/body.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/anynavigationnode/canexecute(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/anynavigationnode/canexecute(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/anynavigationnode/children.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/anynavigationnode/children.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/anynavigationnode/commonstate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/anynavigationnode/commonstate.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/anynavigationnode/execute(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/anynavigationnode/execute(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/anynavigationnode/finishifneeded().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/anynavigationnode/finishifneeded().json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/anynavigationnode/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/anynavigationnode/id.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/anynavigationnode/init(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/anynavigationnode/init(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/anynavigationnode/iswrappernode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/anynavigationnode/iswrappernode.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/anynavigationnode/objectwillchange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/anynavigationnode/objectwillchange.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/anynavigationnode/parent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/anynavigationnode/parent.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/anynavigationnode/predecessors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/anynavigationnode/predecessors.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/anynavigationnode/presentednode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/anynavigationnode/presentednode.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/anynavigationnode/printdebuggraph().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/anynavigationnode/printdebuggraph().json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/anynavigationnode/printdebugtext(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/anynavigationnode/printdebugtext(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/anynavigationnode/root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/anynavigationnode/root.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/anynavigationnode/sendmessage(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/anynavigationnode/sendmessage(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/anynavigationnode/successors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/anynavigationnode/successors.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/anynavigationnode/toppresented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/anynavigationnode/toppresented.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/commonnavigationnodestate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/commonnavigationnodestate.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/commonnavigationnodestate/init().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/commonnavigationnodestate/init().json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/confirmationdialoginputdata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/confirmationdialoginputdata.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/confirmationdialoginputdata/action.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/confirmationdialoginputdata/action.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/defaultstackrootnavigationnode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/defaultstackrootnavigationnode.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/defaultstackrootnavigationnode/body.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/defaultstackrootnavigationnode/body.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/defaultstackrootnavigationnode/root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/defaultstackrootnavigationnode/root.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/defaulttabnode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/defaulttabnode.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/defaulttabnode/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/defaulttabnode/id.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/defaulttabnode/navigationnode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/defaulttabnode/navigationnode.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/defaulttabnode/resolvedview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/defaulttabnode/resolvedview.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/dismissnavigationcommand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/dismissnavigationcommand.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/dismisswindownavigationcommand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/dismisswindownavigationcommand.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/environmentnavigationnode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/environmentnavigationnode.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/environmentnavigationnode/init().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/environmentnavigationnode/init().json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/environmentnavigationnode/update().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/environmentnavigationnode/update().json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/equatablenavigationnode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/equatablenavigationnode.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/equatablenavigationnode/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/equatablenavigationnode/!=(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/equatablenavigationnode/==(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/equatablenavigationnode/==(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/equatablenavigationnode/wrapped.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/equatablenavigationnode/wrapped.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationcommand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationcommand.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationcommand/canexecute(on:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationcommand/canexecute(on:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationcommand/dismiss(animated:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationcommand/dismiss(animated:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationcommand/dismisswindow(id:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationcommand/dismisswindow(id:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationcommand/execute(on:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationcommand/execute(on:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationcommand/hide(animated:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationcommand/hide(animated:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationcommand/openurl(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationcommand/openurl(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationcommand/openwindow(id:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationcommand/openwindow(id:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationcommand/switchnode(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationcommand/switchnode(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationcommandexecuter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationcommandexecuter.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationconfig.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationconfig/isdebugprintenabled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationconfig/isdebugprintenabled.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationconfig/shared.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationconfig/shared.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationenvironmenttrigger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationenvironmenttrigger.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationmessage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationmessage.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationmessagelistener.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationmessagelistener.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationnode().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationnode().json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationnode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationnode.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationnode/body-1cqfc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationnode/body-1cqfc.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationnode/body-5me60.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationnode/body-5me60.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationnode/body-7huua.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationnode/body-7huua.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationnode/body-7ra17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationnode/body-7ra17.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationnode/canpresentifwouldnt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationnode/canpresentifwouldnt.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationnode/children-2nvge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationnode/children-2nvge.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationnode/children-2xddt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationnode/children-2xddt.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationnode/children-4obi5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationnode/children-4obi5.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationnode/children-6vf9t.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationnode/children-6vf9t.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationnode/children-9yggz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationnode/children-9yggz.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationnode/commonstate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationnode/commonstate.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationnode/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationnode/id.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationnode/iswrappernode-23e7v.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationnode/iswrappernode-23e7v.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationnode/iswrappernode-4cc6p.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationnode/iswrappernode-4cc6p.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationnode/onmessagereceived(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationnode/onmessagereceived(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationnode/parent-1pzhz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationnode/parent-1pzhz.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationnode/parent-8igea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationnode/parent-8igea.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationnode/predecessors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationnode/predecessors.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationnode/presentednode-7cm1j.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationnode/presentednode-7cm1j.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationnode/presentednode-9l8f8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationnode/presentednode-9l8f8.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationnode/printdebuggraph().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationnode/printdebuggraph().json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationnode/printdebugtext(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationnode/printdebugtext(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationnode/root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationnode/root.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationnode/sendmessage(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationnode/sendmessage(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationnode/successors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationnode/successors.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationnode/toppresented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationnode/toppresented.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationnoderesolvedview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationnoderesolvedview.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationnoderesolvedview/body.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationnoderesolvedview/body.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationnoderesolvedview/bold(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationnoderesolvedview/bold(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationnoderesolvedview/font(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationnoderesolvedview/font(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationnoderesolvedview/frame().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationnoderesolvedview/frame().json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationnoderesolvedview/hidden().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationnoderesolvedview/hidden().json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationnoderesolvedview/id(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationnoderesolvedview/id(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationnoderesolvedview/mask(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationnoderesolvedview/mask(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationnoderesolvedview/tint(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationnoderesolvedview/tint(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/accentcolor(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/accentcolor(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/animation(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/animation(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/animation(_:body:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/animation(_:body:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/animation(_:value:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/animation(_:value:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/backgroundstyle(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/backgroundstyle(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/badge(_:)-1ec9s.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/badge(_:)-1ec9s.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/badge(_:)-24js6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/badge(_:)-24js6.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/badge(_:)-3yfkp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/badge(_:)-3yfkp.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/badge(_:)-6bf3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/badge(_:)-6bf3.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/badgeprominence(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/badgeprominence(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/baselineoffset(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/baselineoffset(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/blendmode(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/blendmode(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/body.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/body.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/bold(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/bold(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/border(_:width:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/border(_:width:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/brightness(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/brightness(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/clipshape(_:style:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/clipshape(_:style:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/colorinvert().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/colorinvert().json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/colormultiply(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/colormultiply(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/colorscheme(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/colorscheme(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/compositinggroup().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/compositinggroup().json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/containershape(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/containershape(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/contextmenu(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/contextmenu(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/contrast(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/contrast(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/controlsize(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/controlsize(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/coordinatespace(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/coordinatespace(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/datepickerstyle(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/datepickerstyle(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/deletedisabled(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/deletedisabled(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/dialogicon(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/dialogicon(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/disabled(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/disabled(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/draggable(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/draggable(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/dynamictypesize(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/dynamictypesize(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/environment(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/environment(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/environment(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/environment(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/finddisabled(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/finddisabled(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/fixedsize().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/fixedsize().json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/focusable(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/focusable(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/focused(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/focused(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/focused(_:equals:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/focused(_:equals:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/focusedvalue(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/focusedvalue(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/font(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/font(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/fontdesign(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/fontdesign(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/fontweight(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/fontweight(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/fontwidth(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/fontwidth(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/foregroundcolor(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/foregroundcolor(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/foregroundstyle(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/foregroundstyle(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/formstyle(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/formstyle(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/frame().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/frame().json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/gaugestyle(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/gaugestyle(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/geometrygroup().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/geometrygroup().json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/gesture(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/gesture(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/grayscale(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/grayscale(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/gridcellanchor(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/gridcellanchor(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/gridcellcolumns(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/gridcellcolumns(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/groupboxstyle(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/groupboxstyle(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/help(_:)-3tyut.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/help(_:)-3tyut.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/help(_:)-50qfv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/help(_:)-50qfv.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/help(_:)-6u09z.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/help(_:)-6u09z.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/hidden().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/hidden().json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/hovereffect(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/hovereffect(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/huerotation(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/huerotation(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/id(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/id(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/imagescale(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/imagescale(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/indexviewstyle(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/indexviewstyle(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/init(rootnode:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/init(rootnode:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/italic(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/italic(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/itemprovider(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/itemprovider(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/kerning(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/kerning(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/keyboardtype(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/keyboardtype(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/labelshidden().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/labelshidden().json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/labelstyle(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/labelstyle(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/layoutpriority(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/layoutpriority(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/linelimit(_:)-2oro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/linelimit(_:)-2oro.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/linespacing(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/linespacing(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/liststyle(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/liststyle(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/mask(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/mask(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/menuorder(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/menuorder(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/menustyle(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/menustyle(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/modifier(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/modifier(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/monospaced(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/monospaced(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/movedisabled(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/movedisabled(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/offset(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/offset(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/offset(x:y:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/offset(x:y:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/ondrag(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/ondrag(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/onsubmit(of:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/onsubmit(of:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/opacity(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/opacity(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/padding(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/padding(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/pickerstyle(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/pickerstyle(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/position(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/position(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/position(x:y:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/position(x:y:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/saturation(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/saturation(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/scaledtofill().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/scaledtofill().json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/scaledtofit().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/scaledtofit().json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/scenepadding(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/scenepadding(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/submitlabel(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/submitlabel(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/submitscope(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/submitscope(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/tabitem(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/tabitem(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/tablestyle(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/tablestyle(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/tabviewstyle(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/tabviewstyle(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/textcase(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/textcase(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/textrenderer(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/textrenderer(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/tint(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/tint(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/togglestyle(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/togglestyle(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/toolbar(_:for:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/toolbar(_:for:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/toolbarrole(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/toolbarrole(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/tracking(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/tracking(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/transaction(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/transaction(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/transition(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/transition(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/unredacted().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/unredacted().json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/visualeffect(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/visualeffect(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/navigationwindow/zindex(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/navigationwindow/zindex(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/openurlnavigationcommand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/openurlnavigationcommand.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/openwindownavigationcommand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/openwindownavigationcommand.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/presentednavigationnode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/presentednavigationnode.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/presentednavigationnode/body.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/presentednavigationnode/body.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/presentednavigationnode/node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/presentednavigationnode/node.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/presentednavigationnode/sourceid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/presentednavigationnode/sourceid.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/presentnavigationcommand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/presentnavigationcommand.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/removalnavigationmessage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/removalnavigationmessage.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/resolvedhidenavigationcommand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/resolvedhidenavigationcommand.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/sfsafariinputdata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/sfsafariinputdata.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/sfsafariinputdata/init(url:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/sfsafariinputdata/init(url:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/sfsafarinavigationnode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/sfsafarinavigationnode.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/sfsafarinavigationnode/body.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/sfsafarinavigationnode/body.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/sfsafarinavigationnode/children.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/sfsafarinavigationnode/children.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/sfsafarinavigationnode/parent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/sfsafarinavigationnode/parent.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/sfsafarinavigationnode/root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/sfsafarinavigationnode/root.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/sfsafarinavigationnode/successors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/sfsafarinavigationnode/successors.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/sheetpresentednavigationnode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/sheetpresentednavigationnode.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/sheetpresentednavigationnode/node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/sheetpresentednavigationnode/node.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/stackappendnavigationcommand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/stackappendnavigationcommand.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/stackdroplastnavigationcommand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/stackdroplastnavigationcommand.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/stackdroptorootnavigationcommand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/stackdroptorootnavigationcommand.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/stackmapnavigationcommand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/stackmapnavigationcommand.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/stacknavigationnode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/stacknavigationnode.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/stacknavigationnode/destination.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/stacknavigationnode/destination.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/stacknavigationtransition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/stacknavigationtransition.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/stackrootnavigationnode().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/stackrootnavigationnode().json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/stackrootnavigationnode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/stackrootnavigationnode.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/stackrootnavigationnodeview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/stackrootnavigationnodeview.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/stackrootnavigationnodeview/body.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/stackrootnavigationnodeview/body.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/stacksetrootnavigationcommand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/stacksetrootnavigationcommand.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/stacktabbartoolbarbehavior.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/stacktabbartoolbarbehavior.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/swiftuicore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/swiftuicore.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/swiftuicore/environmentvalues.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/swiftuicore/environmentvalues.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/swiftuicore/view.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/swiftuicore/view.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/switchednavigationnode().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/switchednavigationnode().json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/switchednavigationnode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/switchednavigationnode.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/switchednavigationnode/body(for:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/switchednavigationnode/body(for:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/switchednavigationnodeview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/switchednavigationnodeview.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/switchednavigationnodeview/body.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/switchednavigationnodeview/body.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/switchednavigationnodeview/id(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/switchednavigationnodeview/id(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/switchednavigationnodeview/init().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/switchednavigationnodeview/init().json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/switchnavigationcommand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/switchnavigationcommand.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/tabnode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/tabnode.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/tabnode/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/tabnode/id.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/tabnode/navigationnode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/tabnode/navigationnode.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/tabnode/resolvedview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/tabnode/resolvedview.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/tabsrootnavigationnode().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/tabsrootnavigationnode().json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/tabsrootnavigationnode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/tabsrootnavigationnode.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/tabsrootnavigationnode/body(for:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/tabsrootnavigationnode/body(for:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/tabsrootnavigationnode/tabsnodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/tabsrootnavigationnode/tabsnodes.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/tabsrootnavigationnodeview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/tabsrootnavigationnodeview.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/tabsrootnavigationnodeview/body.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/tabsrootnavigationnodeview/body.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/tabsrootnavigationnodeview/id(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/tabsrootnavigationnodeview/id(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/tabsrootnavigationnodeview/init().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/tabsrootnavigationnodeview/init().json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/tabsselectitemnavigationcommand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/tabsselectitemnavigationcommand.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/uikit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/uikit.json -------------------------------------------------------------------------------- /docs/data/documentation/swiftuinavigation/uikit/uinavigationcontroller.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/data/documentation/swiftuinavigation/uikit/uinavigationcontroller.json -------------------------------------------------------------------------------- /docs/developer-og-twitter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/developer-og-twitter.jpg -------------------------------------------------------------------------------- /docs/developer-og.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/developer-og.jpg -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/alertinputdata/action/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/alertinputdata/action/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/alertinputdata/action/role/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/alertinputdata/action/role/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/alertinputdata/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/alertinputdata/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/alertpresentednavigationnode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/alertpresentednavigationnode/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/anynavigationnode/body/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/anynavigationnode/body/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/anynavigationnode/canexecute(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/anynavigationnode/canexecute(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/anynavigationnode/children/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/anynavigationnode/children/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/anynavigationnode/commonstate/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/anynavigationnode/commonstate/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/anynavigationnode/execute(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/anynavigationnode/execute(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/anynavigationnode/id/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/anynavigationnode/id/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/anynavigationnode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/anynavigationnode/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/anynavigationnode/init(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/anynavigationnode/init(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/anynavigationnode/iswrappernode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/anynavigationnode/iswrappernode/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/anynavigationnode/parent/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/anynavigationnode/parent/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/anynavigationnode/predecessors/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/anynavigationnode/predecessors/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/anynavigationnode/presentednode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/anynavigationnode/presentednode/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/anynavigationnode/root/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/anynavigationnode/root/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/anynavigationnode/successors/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/anynavigationnode/successors/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/anynavigationnode/toppresented/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/anynavigationnode/toppresented/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/commonnavigationnodestate/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/commonnavigationnodestate/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/commonnavigationnodestate/init()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/commonnavigationnodestate/init()/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/confirmationdialoginputdata/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/confirmationdialoginputdata/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/defaultstackrootnavigationnode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/defaultstackrootnavigationnode/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/defaulttabnode/id/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/defaulttabnode/id/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/defaulttabnode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/defaulttabnode/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/defaulttabnode/navigationnode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/defaulttabnode/navigationnode/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/defaulttabnode/resolvedview/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/defaulttabnode/resolvedview/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/dismissnavigationcommand/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/dismissnavigationcommand/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/dismisswindownavigationcommand/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/dismisswindownavigationcommand/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/environmentnavigationnode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/environmentnavigationnode/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/environmentnavigationnode/init()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/environmentnavigationnode/init()/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/equatablenavigationnode/!=(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/equatablenavigationnode/!=(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/equatablenavigationnode/==(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/equatablenavigationnode/==(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/equatablenavigationnode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/equatablenavigationnode/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/equatablenavigationnode/wrapped/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/equatablenavigationnode/wrapped/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationcommand/execute(on:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationcommand/execute(on:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationcommand/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationcommand/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationcommand/openurl(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationcommand/openurl(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationcommand/switchnode(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationcommand/switchnode(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationcommandexecuter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationcommandexecuter/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationconfig/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationconfig/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationconfig/shared/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationconfig/shared/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationenvironmenttrigger/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationenvironmenttrigger/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationmessage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationmessage/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationmessagelistener/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationmessagelistener/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationnode()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationnode()/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationnode/body-1cqfc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationnode/body-1cqfc/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationnode/body-5me60/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationnode/body-5me60/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationnode/body-7huua/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationnode/body-7huua/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationnode/body-7ra17/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationnode/body-7ra17/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationnode/children-2nvge/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationnode/children-2nvge/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationnode/children-2xddt/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationnode/children-2xddt/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationnode/children-4obi5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationnode/children-4obi5/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationnode/children-6vf9t/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationnode/children-6vf9t/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationnode/children-9yggz/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationnode/children-9yggz/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationnode/commonstate/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationnode/commonstate/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationnode/id/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationnode/id/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationnode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationnode/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationnode/parent-1pzhz/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationnode/parent-1pzhz/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationnode/parent-8igea/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationnode/parent-8igea/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationnode/predecessors/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationnode/predecessors/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationnode/printdebuggraph()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationnode/printdebuggraph()/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationnode/root/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationnode/root/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationnode/sendmessage(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationnode/sendmessage(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationnode/successors/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationnode/successors/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationnode/toppresented/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationnode/toppresented/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationnoderesolvedview/body/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationnoderesolvedview/body/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationnoderesolvedview/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationnoderesolvedview/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/accentcolor(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/accentcolor(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/animation(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/animation(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/badge(_:)-1ec9s/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/badge(_:)-1ec9s/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/badge(_:)-24js6/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/badge(_:)-24js6/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/badge(_:)-3yfkp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/badge(_:)-3yfkp/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/badge(_:)-6bf3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/badge(_:)-6bf3/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/blendmode(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/blendmode(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/body/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/body/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/bold(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/bold(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/brightness(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/brightness(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/colorinvert()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/colorinvert()/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/colorscheme(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/colorscheme(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/contextmenu(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/contextmenu(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/contrast(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/contrast(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/controlsize(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/controlsize(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/dialogicon(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/dialogicon(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/disabled(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/disabled(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/draggable(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/draggable(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/environment(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/environment(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/fixedsize()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/fixedsize()/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/focusable(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/focusable(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/focused(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/focused(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/font(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/font(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/fontdesign(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/fontdesign(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/fontweight(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/fontweight(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/fontwidth(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/fontwidth(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/formstyle(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/formstyle(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/frame()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/frame()/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/gaugestyle(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/gaugestyle(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/geometrygroup()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/geometrygroup()/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/gesture(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/gesture(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/grayscale(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/grayscale(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/help(_:)-3tyut/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/help(_:)-3tyut/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/help(_:)-50qfv/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/help(_:)-50qfv/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/help(_:)-6u09z/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/help(_:)-6u09z/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/hidden()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/hidden()/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/hovereffect(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/hovereffect(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/huerotation(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/huerotation(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/id(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/id(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/imagescale(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/imagescale(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/init(rootnode:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/init(rootnode:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/italic(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/italic(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/kerning(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/kerning(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/labelshidden()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/labelshidden()/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/labelstyle(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/labelstyle(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/linespacing(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/linespacing(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/liststyle(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/liststyle(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/mask(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/mask(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/menuorder(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/menuorder(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/menustyle(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/menustyle(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/modifier(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/modifier(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/monospaced(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/monospaced(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/offset(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/offset(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/offset(x:y:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/offset(x:y:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/ondrag(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/ondrag(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/onsubmit(of:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/onsubmit(of:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/opacity(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/opacity(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/padding(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/padding(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/pickerstyle(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/pickerstyle(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/position(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/position(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/position(x:y:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/position(x:y:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/saturation(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/saturation(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/scaledtofill()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/scaledtofill()/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/scaledtofit()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/scaledtofit()/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/submitlabel(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/submitlabel(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/submitscope(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/submitscope(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/tabitem(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/tabitem(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/tablestyle(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/tablestyle(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/textcase(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/textcase(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/tint(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/tint(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/togglestyle(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/togglestyle(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/toolbar(_:for:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/toolbar(_:for:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/toolbarrole(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/toolbarrole(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/tracking(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/tracking(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/transaction(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/transaction(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/transition(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/transition(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/unredacted()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/unredacted()/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/navigationwindow/zindex(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/navigationwindow/zindex(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/openurlnavigationcommand/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/openurlnavigationcommand/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/openwindownavigationcommand/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/openwindownavigationcommand/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/presentednavigationnode/body/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/presentednavigationnode/body/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/presentednavigationnode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/presentednavigationnode/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/presentednavigationnode/node/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/presentednavigationnode/node/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/presentednavigationnode/sourceid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/presentednavigationnode/sourceid/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/presentnavigationcommand/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/presentnavigationcommand/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/removalnavigationmessage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/removalnavigationmessage/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/resolvedhidenavigationcommand/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/resolvedhidenavigationcommand/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/sfsafariinputdata/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/sfsafariinputdata/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/sfsafariinputdata/init(url:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/sfsafariinputdata/init(url:)/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/sfsafarinavigationnode/body/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/sfsafarinavigationnode/body/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/sfsafarinavigationnode/children/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/sfsafarinavigationnode/children/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/sfsafarinavigationnode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/sfsafarinavigationnode/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/sfsafarinavigationnode/parent/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/sfsafarinavigationnode/parent/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/sfsafarinavigationnode/root/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/sfsafarinavigationnode/root/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/sheetpresentednavigationnode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/sheetpresentednavigationnode/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/stackappendnavigationcommand/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/stackappendnavigationcommand/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/stackdroplastnavigationcommand/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/stackdroplastnavigationcommand/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/stackdroptorootnavigationcommand/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/stackdroptorootnavigationcommand/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/stackmapnavigationcommand/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/stackmapnavigationcommand/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/stacknavigationnode/destination/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/stacknavigationnode/destination/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/stacknavigationnode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/stacknavigationnode/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/stacknavigationtransition/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/stacknavigationtransition/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/stackrootnavigationnode()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/stackrootnavigationnode()/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/stackrootnavigationnode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/stackrootnavigationnode/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/stackrootnavigationnodeview/body/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/stackrootnavigationnodeview/body/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/stackrootnavigationnodeview/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/stackrootnavigationnodeview/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/stacksetrootnavigationcommand/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/stacksetrootnavigationcommand/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/stacktabbartoolbarbehavior/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/stacktabbartoolbarbehavior/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/swiftuicore/environmentvalues/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/swiftuicore/environmentvalues/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/swiftuicore/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/swiftuicore/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/swiftuicore/view/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/swiftuicore/view/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/switchednavigationnode()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/switchednavigationnode()/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/switchednavigationnode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/switchednavigationnode/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/switchednavigationnodeview/body/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/switchednavigationnodeview/body/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/switchednavigationnodeview/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/switchednavigationnodeview/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/switchnavigationcommand/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/switchnavigationcommand/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/tabnode/id/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/tabnode/id/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/tabnode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/tabnode/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/tabnode/navigationnode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/tabnode/navigationnode/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/tabnode/resolvedview/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/tabnode/resolvedview/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/tabsrootnavigationnode()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/tabsrootnavigationnode()/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/tabsrootnavigationnode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/tabsrootnavigationnode/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/tabsrootnavigationnode/tabsnodes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/tabsrootnavigationnode/tabsnodes/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/tabsrootnavigationnodeview/body/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/tabsrootnavigationnodeview/body/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/tabsrootnavigationnodeview/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/tabsrootnavigationnodeview/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/tabsselectitemnavigationcommand/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/tabsselectitemnavigationcommand/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/uikit/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/uikit/index.html -------------------------------------------------------------------------------- /docs/documentation/swiftuinavigation/uikit/uinavigationcontroller/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/documentation/swiftuinavigation/uikit/uinavigationcontroller/index.html -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/favicon.svg -------------------------------------------------------------------------------- /docs/img/added-icon.832a5d2c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/img/added-icon.832a5d2c.svg -------------------------------------------------------------------------------- /docs/img/deprecated-icon.7bf1740a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/img/deprecated-icon.7bf1740a.svg -------------------------------------------------------------------------------- /docs/img/modified-icon.efb2697d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/img/modified-icon.efb2697d.svg -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index/availability.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/index/availability.index -------------------------------------------------------------------------------- /docs/index/data.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/index/data.mdb -------------------------------------------------------------------------------- /docs/index/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/index/index.json -------------------------------------------------------------------------------- /docs/index/navigator.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/index/navigator.index -------------------------------------------------------------------------------- /docs/js/104.fe5974d0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/js/104.fe5974d0.js -------------------------------------------------------------------------------- /docs/js/337.274a8ccc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/js/337.274a8ccc.js -------------------------------------------------------------------------------- /docs/js/842.a7e2003a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/js/842.a7e2003a.js -------------------------------------------------------------------------------- /docs/js/866.7ae93681.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/js/866.7ae93681.js -------------------------------------------------------------------------------- /docs/js/chunk-vendors.bdb7cbba.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/js/chunk-vendors.bdb7cbba.js -------------------------------------------------------------------------------- /docs/js/documentation-topic.29bf51a3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/js/documentation-topic.29bf51a3.js -------------------------------------------------------------------------------- /docs/js/highlight-js-bash-js.702f0c5c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/js/highlight-js-bash-js.702f0c5c.js -------------------------------------------------------------------------------- /docs/js/highlight-js-c-js.063069d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/js/highlight-js-c-js.063069d3.js -------------------------------------------------------------------------------- /docs/js/highlight-js-cpp-js.458a9ae4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/js/highlight-js-cpp-js.458a9ae4.js -------------------------------------------------------------------------------- /docs/js/highlight-js-css-js.bfc4251f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/js/highlight-js-css-js.bfc4251f.js -------------------------------------------------------------------------------- /docs/js/highlight-js-custom-markdown.78c9f6ed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/js/highlight-js-custom-markdown.78c9f6ed.js -------------------------------------------------------------------------------- /docs/js/highlight-js-custom-swift.738731d1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/js/highlight-js-custom-swift.738731d1.js -------------------------------------------------------------------------------- /docs/js/highlight-js-diff-js.4db9a783.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/js/highlight-js-diff-js.4db9a783.js -------------------------------------------------------------------------------- /docs/js/highlight-js-http-js.f78e83c2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/js/highlight-js-http-js.f78e83c2.js -------------------------------------------------------------------------------- /docs/js/highlight-js-java-js.4fe21e94.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/js/highlight-js-java-js.4fe21e94.js -------------------------------------------------------------------------------- /docs/js/highlight-js-javascript-js.dfc9d16d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/js/highlight-js-javascript-js.dfc9d16d.js -------------------------------------------------------------------------------- /docs/js/highlight-js-json-js.2a1856ba.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/js/highlight-js-json-js.2a1856ba.js -------------------------------------------------------------------------------- /docs/js/highlight-js-llvm-js.26121771.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/js/highlight-js-llvm-js.26121771.js -------------------------------------------------------------------------------- /docs/js/highlight-js-markdown-js.a2f456af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/js/highlight-js-markdown-js.a2f456af.js -------------------------------------------------------------------------------- /docs/js/highlight-js-objectivec-js.74dea052.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/js/highlight-js-objectivec-js.74dea052.js -------------------------------------------------------------------------------- /docs/js/highlight-js-perl-js.da6eda82.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/js/highlight-js-perl-js.da6eda82.js -------------------------------------------------------------------------------- /docs/js/highlight-js-php-js.c458ffa4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/js/highlight-js-php-js.c458ffa4.js -------------------------------------------------------------------------------- /docs/js/highlight-js-python-js.60354774.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/js/highlight-js-python-js.60354774.js -------------------------------------------------------------------------------- /docs/js/highlight-js-ruby-js.7272231f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/js/highlight-js-ruby-js.7272231f.js -------------------------------------------------------------------------------- /docs/js/highlight-js-scss-js.adcd11a2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/js/highlight-js-scss-js.adcd11a2.js -------------------------------------------------------------------------------- /docs/js/highlight-js-shell-js.0ad5b20f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/js/highlight-js-shell-js.0ad5b20f.js -------------------------------------------------------------------------------- /docs/js/highlight-js-swift-js.bdd5bff5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/js/highlight-js-swift-js.bdd5bff5.js -------------------------------------------------------------------------------- /docs/js/highlight-js-xml-js.0d78f903.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/js/highlight-js-xml-js.0d78f903.js -------------------------------------------------------------------------------- /docs/js/index.0d775bb6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/js/index.0d775bb6.js -------------------------------------------------------------------------------- /docs/js/topic.37e71576.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/js/topic.37e71576.js -------------------------------------------------------------------------------- /docs/js/tutorials-overview.acb09e8a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/js/tutorials-overview.acb09e8a.js -------------------------------------------------------------------------------- /docs/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertDresler/SwiftUINavigation/HEAD/docs/metadata.json --------------------------------------------------------------------------------