gitextract_czsyd4_6/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug-report.md │ │ └── feature-request.md │ └── workflows/ │ └── swift.yml ├── .gitignore ├── Demo/ │ ├── Demo/ │ │ ├── App/ │ │ │ ├── DemoApp.swift │ │ │ └── MainView.swift │ │ ├── Components/ │ │ │ ├── LandmarkCard.swift │ │ │ ├── SneakerCard.swift │ │ │ └── SneakerItemRow.swift │ │ ├── Demos/ │ │ │ ├── CarouselStack/ │ │ │ │ └── Scenes/ │ │ │ │ └── CarouselStackDemoView.swift │ │ │ ├── ShuffleDeck/ │ │ │ │ └── Scenes/ │ │ │ │ └── ShuffleDeckDemoView.swift │ │ │ └── ShuffleStack/ │ │ │ └── Scenes/ │ │ │ ├── ShuffleStackDemoView.swift │ │ │ └── TimingShuffleStackDemoView.swift │ │ ├── Extensions/ │ │ │ └── Color+Extension.swift │ │ ├── Models/ │ │ │ ├── Landmark.swift │ │ │ └── Sneaker.swift │ │ ├── Resources/ │ │ │ ├── Assets.xcassets/ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── landmarks/ │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── christ_the_redeemer.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── eiffel_tower.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── great_wall_of_china.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── merlion_statue.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── niagara_falls.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── petronas_towers.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── shwedagon_pagoda.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── sphinx_statue.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── statue_of_liberty.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── shuffle-it-logo.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── sneakers/ │ │ │ │ ├── Contents.json │ │ │ │ ├── air-force-1-mid.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── air-forces/ │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── air-force1.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── air-force2.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── air-force3.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── air-force4.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── air-force5.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── air-jordan-1.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── air-jordans/ │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── air-jordan1.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── air-jordan2.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── air-jordan3.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── air-trainer-sc-high.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── air-trainers/ │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── air-trainer1.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── air-trainer2.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── dunk-high-retro-premium.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── dunk-high-vintage.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── kyrie-infinity.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── kyrie-infiniy/ │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── kyrie-infinity1.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── kyrie-infinity2.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── nike-air-presto.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── prestos/ │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── presto1.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── presto2.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── retros/ │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── retro1.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── retro2.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── vintages/ │ │ │ │ ├── Contents.json │ │ │ │ ├── vintage1.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── vintage2.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── vintage3.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── vintage4.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── Json/ │ │ │ │ ├── Landmarks.json │ │ │ │ └── Sneakers.json │ │ │ └── Launch Screen.storyboard │ │ └── ViewModifier/ │ │ └── DragGestureViewModifier.swift │ └── Demo.xcodeproj/ │ ├── project.pbxproj │ └── project.xcworkspace/ │ ├── contents.xcworkspacedata │ └── xcshareddata/ │ └── IDEWorkspaceChecks.plist ├── LICENSE ├── Package.swift ├── README.md ├── Sources/ │ ├── CarouselStack/ │ │ ├── EnvironmentValues/ │ │ │ ├── CarouselAnimation.swift │ │ │ ├── CarouselContext.swift │ │ │ ├── CarouselDisabled.swift │ │ │ ├── CarouselPadding.swift │ │ │ ├── CarouselScale.swift │ │ │ ├── CarouselSpacing.swift │ │ │ ├── CarouselStyle.swift │ │ │ ├── CarouselTranslation.swift │ │ │ └── CarouselTrigger.swift │ │ ├── Extensions/ │ │ │ └── CarouselStack+View.swift │ │ └── View/ │ │ ├── CarouselStack+Content.swift │ │ ├── CarouselStack+Data.swift │ │ ├── CarouselStack+Gesture.swift │ │ ├── CarouselStack+Sliding.swift │ │ └── CarouselStack.swift │ ├── ShuffleDeck/ │ │ ├── EnvironmentValues/ │ │ │ ├── ShuffleDeckAnimation.swift │ │ │ ├── ShuffleDeckContext.swift │ │ │ ├── ShuffleDeckDisabled.swift │ │ │ ├── ShuffleDeckScale.swift │ │ │ ├── ShuffleDeckStyle.swift │ │ │ ├── ShuffleDeckTranslation.swift │ │ │ └── ShuffleDeckTrigger.swift │ │ ├── Extensions/ │ │ │ └── ShuffleDeck+View.swift │ │ └── View/ │ │ ├── ShuffleDeck+Content.swift │ │ ├── ShuffleDeck+Data.swift │ │ ├── ShuffleDeck+Gesture.swift │ │ ├── ShuffleDeck+Shuffling.swift │ │ └── ShuffleDeck.swift │ ├── ShuffleIt/ │ │ └── ShuffleIt.docc/ │ │ └── ShuffleIt.md │ ├── ShuffleStack/ │ │ ├── EnvironmentValues/ │ │ │ ├── ShuffleAnimation.swift │ │ │ ├── ShuffleContext.swift │ │ │ ├── ShuffleDiabled.swift │ │ │ ├── ShuffleOffset.swift │ │ │ ├── ShufflePadding.swift │ │ │ ├── ShuffleScale.swift │ │ │ ├── ShuffleStyle.swift │ │ │ ├── ShuffleTranslation.swift │ │ │ └── ShuffleTrigger.swift │ │ ├── Extensions/ │ │ │ └── ShuffleStack+View.swift │ │ └── View/ │ │ ├── ShuffleStack+Content.swift │ │ ├── ShuffleStack+Data.swift │ │ ├── ShuffleStack+Gesture.swift │ │ ├── ShuffleStack+Shuffling.swift │ │ └── ShuffleStack.swift │ ├── Utils/ │ │ ├── Extensions/ │ │ │ └── RandomAccessCollection+Extension.swift │ │ └── PreferenceKeys/ │ │ └── SizePreferenceKey.swift │ └── UtilsForTest/ │ └── Inspection.swift ├── Tests/ │ └── ShuffleItTests/ │ ├── CarouselStack/ │ │ ├── CarouselStackGestureTests.swift │ │ ├── CarouselStackShufflingTests.swift │ │ └── CarouselStackTests.swift │ ├── ShuffleDeck/ │ │ ├── ShuffleDeckGestureTests.swift │ │ ├── ShuffleDeckSlidingTests.swift │ │ └── ShuffleDeckTests.swift │ ├── ShuffleStack/ │ │ ├── ShuffleStackGestureTests.swift │ │ ├── ShuffleStackShufflingTests.swift │ │ └── ShuffleStackTests.swift │ └── Utils/ │ ├── BaseTestCase.swift │ ├── ColorView.swift │ └── ValueSpy.swift ├── codecov.yaml └── docs/ ├── css/ │ ├── documentation-topic.3bca6578.css │ ├── documentation-topic~topic~tutorials-overview.82acfe22.css │ ├── index.12bb178a.css │ ├── topic.ee15af52.css │ └── tutorials-overview.06e8bcf7.css ├── data/ │ └── documentation/ │ ├── shuffleit/ │ │ ├── carouselanimation/ │ │ │ ├── !=(_:_:).json │ │ │ ├── easein.json │ │ │ ├── easeinout.json │ │ │ ├── easeout.json │ │ │ ├── equatable-implementations.json │ │ │ └── linear.json │ │ ├── carouselanimation.json │ │ ├── carouselcontext/ │ │ │ ├── direction.json │ │ │ ├── index.json │ │ │ └── previousindex.json │ │ ├── carouselcontext.json │ │ ├── carouseldirection/ │ │ │ ├── !=(_:_:).json │ │ │ ├── equatable-implementations.json │ │ │ ├── left.json │ │ │ └── right.json │ │ ├── carouseldirection.json │ │ ├── carouselstack/ │ │ │ ├── accentcolor(_:).json │ │ │ ├── accessibility(activationpoint:)-4y62.json │ │ │ ├── accessibility(activationpoint:)-695kx.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:_:)-3lqsr.json │ │ │ ├── accessibilityaction(named:_:)-69c69.json │ │ │ ├── accessibilityaction(named:_:)-rgyh.json │ │ │ ├── accessibilityactivationpoint(_:)-5bbv5.json │ │ │ ├── accessibilityactivationpoint(_:)-8dokx.json │ │ │ ├── accessibilityaddtraits(_:).json │ │ │ ├── accessibilityadjustableaction(_:).json │ │ │ ├── accessibilitychartdescriptor(_:).json │ │ │ ├── accessibilitychildren(children:).json │ │ │ ├── accessibilitycustomcontent(_:_:importance:)-1586n.json │ │ │ ├── accessibilitycustomcontent(_:_:importance:)-1u9b5.json │ │ │ ├── accessibilitycustomcontent(_:_:importance:)-3t2kq.json │ │ │ ├── accessibilitycustomcontent(_:_:importance:)-46frq.json │ │ │ ├── accessibilitycustomcontent(_:_:importance:)-47g1f.json │ │ │ ├── accessibilitycustomcontent(_:_:importance:)-5xqqc.json │ │ │ ├── accessibilitycustomcontent(_:_:importance:)-8rfm7.json │ │ │ ├── accessibilitycustomcontent(_:_:importance:)-9cou3.json │ │ │ ├── accessibilityelement(children:).json │ │ │ ├── accessibilityfocused(_:).json │ │ │ ├── accessibilityfocused(_:equals:).json │ │ │ ├── accessibilityheading(_:).json │ │ │ ├── accessibilityhidden(_:).json │ │ │ ├── accessibilityhint(_:)-2j7te.json │ │ │ ├── accessibilityhint(_:)-37ope.json │ │ │ ├── accessibilityhint(_:)-7yi0h.json │ │ │ ├── accessibilityidentifier(_:).json │ │ │ ├── accessibilityignoresinvertcolors(_:).json │ │ │ ├── accessibilityinputlabels(_:)-3feba.json │ │ │ ├── accessibilityinputlabels(_:)-3p703.json │ │ │ ├── accessibilityinputlabels(_:)-95tn0.json │ │ │ ├── accessibilitylabel(_:)-2tohn.json │ │ │ ├── accessibilitylabel(_:)-755g2.json │ │ │ ├── accessibilitylabel(_:)-8bin6.json │ │ │ ├── accessibilitylabeledpair(role:id:in:).json │ │ │ ├── accessibilitylinkedgroup(id:in:).json │ │ │ ├── accessibilityremovetraits(_:).json │ │ │ ├── accessibilityrepresentation(representation:).json │ │ │ ├── accessibilityrespondstouserinteraction(_:).json │ │ │ ├── accessibilityrotor(_:entries:)-1c2au.json │ │ │ ├── accessibilityrotor(_:entries:)-4pacb.json │ │ │ ├── accessibilityrotor(_:entries:)-4w7j0.json │ │ │ ├── accessibilityrotor(_:entries:)-825mo.json │ │ │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-1w44t.json │ │ │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-4vvcg.json │ │ │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-5gz2c.json │ │ │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-utor.json │ │ │ ├── accessibilityrotor(_:entries:entrylabel:)-25t4x.json │ │ │ ├── accessibilityrotor(_:entries:entrylabel:)-3evdd.json │ │ │ ├── accessibilityrotor(_:entries:entrylabel:)-4e9vu.json │ │ │ ├── accessibilityrotor(_:entries:entrylabel:)-59b0s.json │ │ │ ├── accessibilityrotor(_:textranges:)-25npe.json │ │ │ ├── accessibilityrotor(_:textranges:)-3d2p8.json │ │ │ ├── accessibilityrotor(_:textranges:)-4jxor.json │ │ │ ├── accessibilityrotor(_:textranges:)-9sgga.json │ │ │ ├── accessibilityrotorentry(id:in:).json │ │ │ ├── accessibilityscrollaction(_:).json │ │ │ ├── accessibilityshowslargecontentviewer().json │ │ │ ├── accessibilityshowslargecontentviewer(_:).json │ │ │ ├── accessibilitysortpriority(_:).json │ │ │ ├── accessibilitytextcontenttype(_:).json │ │ │ ├── accessibilityvalue(_:)-5fw6g.json │ │ │ ├── accessibilityvalue(_:)-5y8gy.json │ │ │ ├── accessibilityvalue(_:)-8ihs6.json │ │ │ ├── alert(_:ispresented:actions:)-1q2gb.json │ │ │ ├── alert(_:ispresented:actions:)-76wk8.json │ │ │ ├── alert(_:ispresented:actions:)-7wghk.json │ │ │ ├── alert(_:ispresented:actions:message:)-5s7hn.json │ │ │ ├── alert(_:ispresented:actions:message:)-9a4q7.json │ │ │ ├── alert(_:ispresented:actions:message:)-f5o2.json │ │ │ ├── alert(_:ispresented:presenting:actions:)-4edmo.json │ │ │ ├── alert(_:ispresented:presenting:actions:)-4uw7u.json │ │ │ ├── alert(_:ispresented:presenting:actions:)-8axxo.json │ │ │ ├── alert(_:ispresented:presenting:actions:message:)-226oe.json │ │ │ ├── alert(_:ispresented:presenting:actions:message:)-4tvm3.json │ │ │ ├── alert(_:ispresented:presenting:actions:message:)-7b0gl.json │ │ │ ├── alert(ispresented:content:).json │ │ │ ├── alert(ispresented:error:actions:).json │ │ │ ├── alert(ispresented:error:actions:message:).json │ │ │ ├── alert(item:content:).json │ │ │ ├── alignmentguide(_:computevalue:)-4r6p.json │ │ │ ├── alignmentguide(_:computevalue:)-8e6vc.json │ │ │ ├── allowshittesting(_:).json │ │ │ ├── allowstightening(_:).json │ │ │ ├── anchorpreference(key:value:transform:).json │ │ │ ├── animation(_:).json │ │ │ ├── animation(_:value:).json │ │ │ ├── aspectratio(_:contentmode:)-72t0z.json │ │ │ ├── aspectratio(_:contentmode:)-8gir9.json │ │ │ ├── background(_:alignment:).json │ │ │ ├── background(_:ignoressafeareaedges:).json │ │ │ ├── background(_:in:fillstyle:)-4hb5h.json │ │ │ ├── background(_:in:fillstyle:)-5xuxn.json │ │ │ ├── background(alignment:content:).json │ │ │ ├── background(ignoressafeareaedges:).json │ │ │ ├── background(in:fillstyle:)-2lcq8.json │ │ │ ├── background(in:fillstyle:)-6gtsb.json │ │ │ ├── backgroundpreferencevalue(_:_:).json │ │ │ ├── badge(_:)-10ceg.json │ │ │ ├── badge(_:)-6ah2.json │ │ │ ├── badge(_:)-7kz0m.json │ │ │ ├── badge(_:)-8lj4d.json │ │ │ ├── blendmode(_:).json │ │ │ ├── blur(radius:opaque:).json │ │ │ ├── body.json │ │ │ ├── border(_:width:).json │ │ │ ├── brightness(_:).json │ │ │ ├── buttonbordershape(_:).json │ │ │ ├── buttonstyle(_:)-6awhx.json │ │ │ ├── buttonstyle(_:)-8ljh4.json │ │ │ ├── carouselanimation(_:).json │ │ │ ├── carouseldisabled(_:).json │ │ │ ├── carouselpadding(_:).json │ │ │ ├── carouselscale(_:).json │ │ │ ├── carouselspacing(_:).json │ │ │ ├── carouselstyle(_:).json │ │ │ ├── carouseltrigger(on:).json │ │ │ ├── clipped(antialiased:).json │ │ │ ├── clipshape(_:style:).json │ │ │ ├── colorinvert().json │ │ │ ├── colormultiply(_:).json │ │ │ ├── colorscheme(_:).json │ │ │ ├── compositinggroup().json │ │ │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-1uzrt.json │ │ │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-5d29j.json │ │ │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-718e5.json │ │ │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-65zoh.json │ │ │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-951t3.json │ │ │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-9yu7k.json │ │ │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-1ji6h.json │ │ │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-4fi9z.json │ │ │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-51cln.json │ │ │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-2m470.json │ │ │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-9o8j.json │ │ │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-g5bx.json │ │ │ ├── containershape(_:).json │ │ │ ├── contentshape(_:_:eofill:).json │ │ │ ├── contentshape(_:eofill:).json │ │ │ ├── contextmenu(_:).json │ │ │ ├── contextmenu(menuitems:).json │ │ │ ├── contrast(_:).json │ │ │ ├── controlgroupstyle(_:).json │ │ │ ├── controlsize(_:).json │ │ │ ├── coordinatespace(name:).json │ │ │ ├── cornerradius(_:antialiased:).json │ │ │ ├── datepickerstyle(_:).json │ │ │ ├── defaultappstorage(_:).json │ │ │ ├── deletedisabled(_:).json │ │ │ ├── disableautocorrection(_:).json │ │ │ ├── disabled(_:).json │ │ │ ├── drawinggroup(opaque:colormode:).json │ │ │ ├── dynamictypesize(_:).json │ │ │ ├── edgesignoringsafearea(_:).json │ │ │ ├── environment(_:_:).json │ │ │ ├── environmentobject(_:).json │ │ │ ├── exportsitemproviders(_:onexport:).json │ │ │ ├── exportsitemproviders(_:onexport:onedit:).json │ │ │ ├── fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-2xo1j.json │ │ │ ├── fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-5w70m.json │ │ │ ├── fileexporter(ispresented:documents:contenttype:oncompletion:)-9dfyf.json │ │ │ ├── fileexporter(ispresented:documents:contenttype:oncompletion:)-vkdb.json │ │ │ ├── fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:).json │ │ │ ├── fileimporter(ispresented:allowedcontenttypes:oncompletion:).json │ │ │ ├── filemover(ispresented:file:oncompletion:).json │ │ │ ├── filemover(ispresented:files:oncompletion:).json │ │ │ ├── fixedsize().json │ │ │ ├── fixedsize(horizontal:vertical:).json │ │ │ ├── flipsforrighttoleftlayoutdirection(_:).json │ │ │ ├── focusable(_:).json │ │ │ ├── focusable(_:onfocuschange:).json │ │ │ ├── focused(_:).json │ │ │ ├── focused(_:equals:).json │ │ │ ├── focusedscenevalue(_:_:).json │ │ │ ├── focusedvalue(_:_:).json │ │ │ ├── focusscope(_:).json │ │ │ ├── font(_:).json │ │ │ ├── foregroundcolor(_:).json │ │ │ ├── foregroundstyle(_:).json │ │ │ ├── foregroundstyle(_:_:).json │ │ │ ├── foregroundstyle(_:_:_:).json │ │ │ ├── frame().json │ │ │ ├── frame(minwidth:idealwidth:maxwidth:minheight:idealheight:maxheight:alignment:).json │ │ │ ├── frame(width:height:alignment:).json │ │ │ ├── gesture(_:including:).json │ │ │ ├── grayscale(_:).json │ │ │ ├── groupboxstyle(_:).json │ │ │ ├── handlesexternalevents(preferring:allowing:).json │ │ │ ├── headerprominence(_:).json │ │ │ ├── help(_:)-1f2w4.json │ │ │ ├── help(_:)-1g6m4.json │ │ │ ├── help(_:)-9mw1c.json │ │ │ ├── hidden().json │ │ │ ├── highprioritygesture(_:including:).json │ │ │ ├── horizontalradiogrouplayout().json │ │ │ ├── huerotation(_:).json │ │ │ ├── id(_:).json │ │ │ ├── ignoressafearea(_:edges:).json │ │ │ ├── imagescale(_:).json │ │ │ ├── importsitemproviders(_:onimport:).json │ │ │ ├── init(_:initialindex:content:)-70npt.json │ │ │ ├── init(_:initialindex:content:)-7edjn.json │ │ │ ├── interactivedismissdisabled(_:).json │ │ │ ├── itemprovider(_:).json │ │ │ ├── keyboardshortcut(_:)-2vfia.json │ │ │ ├── keyboardshortcut(_:)-6bxt2.json │ │ │ ├── keyboardshortcut(_:modifiers:).json │ │ │ ├── keyboardshortcut(_:modifiers:localization:).json │ │ │ ├── labelshidden().json │ │ │ ├── labelstyle(_:).json │ │ │ ├── layoutpriority(_:).json │ │ │ ├── linelimit(_:).json │ │ │ ├── linespacing(_:).json │ │ │ ├── listitemtint(_:)-9yojl.json │ │ │ ├── listitemtint(_:)-w4ry.json │ │ │ ├── listrowbackground(_:).json │ │ │ ├── listrowinsets(_:).json │ │ │ ├── liststyle(_:).json │ │ │ ├── luminancetoalpha().json │ │ │ ├── mask(_:).json │ │ │ ├── mask(alignment:_:).json │ │ │ ├── matchedgeometryeffect(id:in:properties:anchor:issource:).json │ │ │ ├── menubuttonstyle(_:).json │ │ │ ├── menuindicator(_:).json │ │ │ ├── menustyle(_:).json │ │ │ ├── minimumscalefactor(_:).json │ │ │ ├── modifier(_:).json │ │ │ ├── monospaceddigit().json │ │ │ ├── movedisabled(_:).json │ │ │ ├── multilinetextalignment(_:).json │ │ │ ├── navigationsubtitle(_:)-10991.json │ │ │ ├── navigationsubtitle(_:)-7xq4j.json │ │ │ ├── navigationsubtitle(_:)-8lv93.json │ │ │ ├── navigationtitle(_:)-544cp.json │ │ │ ├── navigationtitle(_:)-5xkgg.json │ │ │ ├── navigationtitle(_:)-7209e.json │ │ │ ├── navigationtitle(_:)-8mmxy.json │ │ │ ├── navigationviewstyle(_:).json │ │ │ ├── offset(_:).json │ │ │ ├── offset(x:y:).json │ │ │ ├── onappear(perform:).json │ │ │ ├── oncarousel(_:).json │ │ │ ├── oncarouseltranslation(_:).json │ │ │ ├── onchange(of:perform:).json │ │ │ ├── oncommand(_:perform:).json │ │ │ ├── oncontinueuseractivity(_:perform:).json │ │ │ ├── oncopycommand(perform:).json │ │ │ ├── oncutcommand(perform:).json │ │ │ ├── ondeletecommand(perform:).json │ │ │ ├── ondisappear(perform:).json │ │ │ ├── ondrag(_:).json │ │ │ ├── ondrag(_:preview:).json │ │ │ ├── ondrop(of:delegate:)-2phlc.json │ │ │ ├── ondrop(of:delegate:)-5rv2.json │ │ │ ├── ondrop(of:istargeted:perform:)-1ne0m.json │ │ │ ├── ondrop(of:istargeted:perform:)-2dbsa.json │ │ │ ├── ondrop(of:istargeted:perform:)-3z0u6.json │ │ │ ├── ondrop(of:istargeted:perform:)-7mvpm.json │ │ │ ├── onexitcommand(perform:).json │ │ │ ├── onhover(perform:).json │ │ │ ├── onlongpressgesture(minimumduration:maximumdistance:perform:onpressingchanged:).json │ │ │ ├── onlongpressgesture(minimumduration:maximumdistance:pressing:perform:).json │ │ │ ├── onlongpressgesture(minimumduration:perform:onpressingchanged:).json │ │ │ ├── onlongpressgesture(minimumduration:pressing:perform:).json │ │ │ ├── onmovecommand(perform:).json │ │ │ ├── onopenurl(perform:).json │ │ │ ├── onpastecommand(of:perform:)-27ier.json │ │ │ ├── onpastecommand(of:perform:)-2cj5d.json │ │ │ ├── onpastecommand(of:validator:perform:)-18sg7.json │ │ │ ├── onpastecommand(of:validator:perform:)-1ws2h.json │ │ │ ├── onplaypausecommand(perform:).json │ │ │ ├── onpreferencechange(_:perform:).json │ │ │ ├── onreceive(_:perform:).json │ │ │ ├── onshuffle(_:).json │ │ │ ├── onshuffledeck(_:).json │ │ │ ├── onshuffledecktranslation(_:).json │ │ │ ├── onshuffletranslation(_:).json │ │ │ ├── onsubmit(of:_:).json │ │ │ ├── ontapgesture(count:perform:).json │ │ │ ├── opacity(_:).json │ │ │ ├── overlay(_:alignment:).json │ │ │ ├── overlay(_:ignoressafeareaedges:).json │ │ │ ├── overlay(_:in:fillstyle:).json │ │ │ ├── overlay(alignment:content:).json │ │ │ ├── overlaypreferencevalue(_:_:).json │ │ │ ├── padding(_:)-254fg.json │ │ │ ├── padding(_:)-h9m6.json │ │ │ ├── padding(_:_:).json │ │ │ ├── pagecommand(value:in:step:).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 │ │ │ ├── prefersdefaultfocus(_:in:).json │ │ │ ├── presentedwindowstyle(_:).json │ │ │ ├── presentedwindowtoolbarstyle(_:).json │ │ │ ├── previewcontext(_:).json │ │ │ ├── previewdevice(_:).json │ │ │ ├── previewdisplayname(_:).json │ │ │ ├── previewinterfaceorientation(_:).json │ │ │ ├── previewlayout(_:).json │ │ │ ├── privacysensitive(_:).json │ │ │ ├── progressviewstyle(_:).json │ │ │ ├── projectioneffect(_:).json │ │ │ ├── redacted(reason:).json │ │ │ ├── refreshable(action:).json │ │ │ ├── rotation3deffect(_:axis:anchor:anchorz:perspective:).json │ │ │ ├── rotationeffect(_:anchor:).json │ │ │ ├── safeareainset(edge:alignment:spacing:content:)-5p4xh.json │ │ │ ├── safeareainset(edge:alignment:spacing:content:)-8nq8e.json │ │ │ ├── saturation(_:).json │ │ │ ├── scaledtofill().json │ │ │ ├── scaledtofit().json │ │ │ ├── scaleeffect(_:anchor:)-7oq71.json │ │ │ ├── scaleeffect(_:anchor:)-9chpl.json │ │ │ ├── scaleeffect(x:y:anchor:).json │ │ │ ├── scenepadding(_:).json │ │ │ ├── searchable(text:placement:prompt:)-31g2u.json │ │ │ ├── searchable(text:placement:prompt:)-5dpdp.json │ │ │ ├── searchable(text:placement:prompt:)-9859.json │ │ │ ├── searchable(text:placement:prompt:suggestions:)-2uz54.json │ │ │ ├── searchable(text:placement:prompt:suggestions:)-7bvn6.json │ │ │ ├── searchable(text:placement:prompt:suggestions:)-8bmqj.json │ │ │ ├── searchcompletion(_:).json │ │ │ ├── shadow(color:radius:x:y:).json │ │ │ ├── sheet(ispresented:ondismiss:content:).json │ │ │ ├── sheet(item:ondismiss:content:).json │ │ │ ├── shuffleanimation(_:).json │ │ │ ├── shuffledeckanimation(_:).json │ │ │ ├── shuffledeckdisabled(_:).json │ │ │ ├── shuffledeckscale(_:).json │ │ │ ├── shuffledeckstyle(_:).json │ │ │ ├── shuffledecktrigger(on:).json │ │ │ ├── shuffledisabled(_:).json │ │ │ ├── shuffleoffset(_:).json │ │ │ ├── shufflepadding(_:).json │ │ │ ├── shufflescale(_:).json │ │ │ ├── shufflestyle(_:).json │ │ │ ├── shuffletrigger(on:).json │ │ │ ├── simultaneousgesture(_:including:).json │ │ │ ├── speechadjustedpitch(_:).json │ │ │ ├── speechalwaysincludespunctuation(_:).json │ │ │ ├── speechannouncementsqueued(_:).json │ │ │ ├── speechspellsoutcharacters(_:).json │ │ │ ├── submitlabel(_:).json │ │ │ ├── submitscope(_:).json │ │ │ ├── swipeactions(edge:allowsfullswipe:content:).json │ │ │ ├── symbolrenderingmode(_:).json │ │ │ ├── symbolvariant(_:).json │ │ │ ├── tabitem(_:).json │ │ │ ├── tablestyle(_:).json │ │ │ ├── tabviewstyle(_:).json │ │ │ ├── tag(_:).json │ │ │ ├── task(id:priority:_:).json │ │ │ ├── task(priority:_:).json │ │ │ ├── textcase(_:).json │ │ │ ├── textcontenttype(_:).json │ │ │ ├── textfieldstyle(_:).json │ │ │ ├── textselection(_:).json │ │ │ ├── tint(_:).json │ │ │ ├── togglestyle(_:).json │ │ │ ├── toolbar(content:)-6zmlc.json │ │ │ ├── toolbar(content:)-7j09e.json │ │ │ ├── toolbar(id:content:).json │ │ │ ├── touchbar(_:).json │ │ │ ├── touchbar(content:).json │ │ │ ├── touchbarcustomizationlabel(_:).json │ │ │ ├── touchbaritempresence(_:).json │ │ │ ├── touchbaritemprincipal(_:).json │ │ │ ├── transaction(_:).json │ │ │ ├── transformanchorpreference(key:value:transform:).json │ │ │ ├── transformeffect(_:).json │ │ │ ├── transformenvironment(_:transform:).json │ │ │ ├── transformpreference(_:_:).json │ │ │ ├── transition(_:).json │ │ │ ├── truncationmode(_:).json │ │ │ ├── unredacted().json │ │ │ ├── useractivity(_:element:_:).json │ │ │ ├── useractivity(_:isactive:_:).json │ │ │ ├── view-implementations.json │ │ │ └── zindex(_:).json │ │ ├── carouselstack.json │ │ ├── carouselstyle/ │ │ │ ├── !=(_:_:).json │ │ │ ├── equatable-implementations.json │ │ │ ├── finitescroll.json │ │ │ └── infinitescroll.json │ │ ├── carouselstyle.json │ │ ├── shuffleanimation/ │ │ │ ├── !=(_:_:).json │ │ │ ├── easein.json │ │ │ ├── easeinout.json │ │ │ ├── easeout.json │ │ │ ├── equatable-implementations.json │ │ │ └── linear.json │ │ ├── shuffleanimation.json │ │ ├── shufflecontext/ │ │ │ ├── direction.json │ │ │ ├── index.json │ │ │ └── previousindex.json │ │ ├── shufflecontext.json │ │ ├── shuffledeck/ │ │ │ ├── accentcolor(_:).json │ │ │ ├── accessibility(activationpoint:)-5yxv.json │ │ │ ├── accessibility(activationpoint:)-6f80.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:_:)-5vajk.json │ │ │ ├── accessibilityaction(named:_:)-7cvr0.json │ │ │ ├── accessibilityaction(named:_:)-7d1bz.json │ │ │ ├── accessibilityactivationpoint(_:)-4i64i.json │ │ │ ├── accessibilityactivationpoint(_:)-8rijn.json │ │ │ ├── accessibilityaddtraits(_:).json │ │ │ ├── accessibilityadjustableaction(_:).json │ │ │ ├── accessibilitychartdescriptor(_:).json │ │ │ ├── accessibilitychildren(children:).json │ │ │ ├── accessibilitycustomcontent(_:_:importance:)-1dnrk.json │ │ │ ├── accessibilitycustomcontent(_:_:importance:)-1ucuw.json │ │ │ ├── accessibilitycustomcontent(_:_:importance:)-2nazk.json │ │ │ ├── accessibilitycustomcontent(_:_:importance:)-3pllm.json │ │ │ ├── accessibilitycustomcontent(_:_:importance:)-3pod7.json │ │ │ ├── accessibilitycustomcontent(_:_:importance:)-4xdb3.json │ │ │ ├── accessibilitycustomcontent(_:_:importance:)-5vxjo.json │ │ │ ├── accessibilitycustomcontent(_:_:importance:)-qwm7.json │ │ │ ├── accessibilityelement(children:).json │ │ │ ├── accessibilityfocused(_:).json │ │ │ ├── accessibilityfocused(_:equals:).json │ │ │ ├── accessibilityheading(_:).json │ │ │ ├── accessibilityhidden(_:).json │ │ │ ├── accessibilityhint(_:)-1rrl0.json │ │ │ ├── accessibilityhint(_:)-5nt5z.json │ │ │ ├── accessibilityhint(_:)-v4ao.json │ │ │ ├── accessibilityidentifier(_:).json │ │ │ ├── accessibilityignoresinvertcolors(_:).json │ │ │ ├── accessibilityinputlabels(_:)-3x55a.json │ │ │ ├── accessibilityinputlabels(_:)-6n0d7.json │ │ │ ├── accessibilityinputlabels(_:)-8jm4t.json │ │ │ ├── accessibilitylabel(_:)-3ly3t.json │ │ │ ├── accessibilitylabel(_:)-4h91y.json │ │ │ ├── accessibilitylabel(_:)-6a6no.json │ │ │ ├── accessibilitylabeledpair(role:id:in:).json │ │ │ ├── accessibilitylinkedgroup(id:in:).json │ │ │ ├── accessibilityremovetraits(_:).json │ │ │ ├── accessibilityrepresentation(representation:).json │ │ │ ├── accessibilityrespondstouserinteraction(_:).json │ │ │ ├── accessibilityrotor(_:entries:)-1orax.json │ │ │ ├── accessibilityrotor(_:entries:)-2p5bh.json │ │ │ ├── accessibilityrotor(_:entries:)-5mxjh.json │ │ │ ├── accessibilityrotor(_:entries:)-7dolw.json │ │ │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-10oqf.json │ │ │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-25d98.json │ │ │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-51dnw.json │ │ │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-6jn71.json │ │ │ ├── accessibilityrotor(_:entries:entrylabel:)-3f3j9.json │ │ │ ├── accessibilityrotor(_:entries:entrylabel:)-3lh2p.json │ │ │ ├── accessibilityrotor(_:entries:entrylabel:)-6wf02.json │ │ │ ├── accessibilityrotor(_:entries:entrylabel:)-7t24j.json │ │ │ ├── accessibilityrotor(_:textranges:)-6nczq.json │ │ │ ├── accessibilityrotor(_:textranges:)-8d4es.json │ │ │ ├── accessibilityrotor(_:textranges:)-8l6zm.json │ │ │ ├── accessibilityrotor(_:textranges:)-964n8.json │ │ │ ├── accessibilityrotorentry(id:in:).json │ │ │ ├── accessibilityscrollaction(_:).json │ │ │ ├── accessibilityshowslargecontentviewer().json │ │ │ ├── accessibilityshowslargecontentviewer(_:).json │ │ │ ├── accessibilitysortpriority(_:).json │ │ │ ├── accessibilitytextcontenttype(_:).json │ │ │ ├── accessibilityvalue(_:)-3kff4.json │ │ │ ├── accessibilityvalue(_:)-7dd6l.json │ │ │ ├── accessibilityvalue(_:)-7tnqf.json │ │ │ ├── alert(_:ispresented:actions:)-2i24c.json │ │ │ ├── alert(_:ispresented:actions:)-6i5wg.json │ │ │ ├── alert(_:ispresented:actions:)-6mdoc.json │ │ │ ├── alert(_:ispresented:actions:message:)-5j65x.json │ │ │ ├── alert(_:ispresented:actions:message:)-6iohl.json │ │ │ ├── alert(_:ispresented:actions:message:)-8x9o0.json │ │ │ ├── alert(_:ispresented:presenting:actions:)-43fim.json │ │ │ ├── alert(_:ispresented:presenting:actions:)-6dwv5.json │ │ │ ├── alert(_:ispresented:presenting:actions:)-77clm.json │ │ │ ├── alert(_:ispresented:presenting:actions:message:)-7p8yz.json │ │ │ ├── alert(_:ispresented:presenting:actions:message:)-7ptxx.json │ │ │ ├── alert(_:ispresented:presenting:actions:message:)-88es2.json │ │ │ ├── alert(ispresented:content:).json │ │ │ ├── alert(ispresented:error:actions:).json │ │ │ ├── alert(ispresented:error:actions:message:).json │ │ │ ├── alert(item:content:).json │ │ │ ├── alignmentguide(_:computevalue:)-5dc06.json │ │ │ ├── alignmentguide(_:computevalue:)-98bnf.json │ │ │ ├── allowshittesting(_:).json │ │ │ ├── allowstightening(_:).json │ │ │ ├── anchorpreference(key:value:transform:).json │ │ │ ├── animation(_:).json │ │ │ ├── animation(_:value:).json │ │ │ ├── aspectratio(_:contentmode:)-7qpsf.json │ │ │ ├── aspectratio(_:contentmode:)-98csp.json │ │ │ ├── background(_:alignment:).json │ │ │ ├── background(_:ignoressafeareaedges:).json │ │ │ ├── background(_:in:fillstyle:)-16mk7.json │ │ │ ├── background(_:in:fillstyle:)-3xtjy.json │ │ │ ├── background(alignment:content:).json │ │ │ ├── background(ignoressafeareaedges:).json │ │ │ ├── background(in:fillstyle:)-22zkr.json │ │ │ ├── background(in:fillstyle:)-pkki.json │ │ │ ├── backgroundpreferencevalue(_:_:).json │ │ │ ├── badge(_:)-23vvh.json │ │ │ ├── badge(_:)-3b7a5.json │ │ │ ├── badge(_:)-4eyh0.json │ │ │ ├── badge(_:)-5yfrj.json │ │ │ ├── blendmode(_:).json │ │ │ ├── blur(radius:opaque:).json │ │ │ ├── body.json │ │ │ ├── border(_:width:).json │ │ │ ├── brightness(_:).json │ │ │ ├── buttonbordershape(_:).json │ │ │ ├── buttonstyle(_:)-1hkio.json │ │ │ ├── buttonstyle(_:)-1mobg.json │ │ │ ├── carouselanimation(_:).json │ │ │ ├── carouseldisabled(_:).json │ │ │ ├── carouselpadding(_:).json │ │ │ ├── carouselscale(_:).json │ │ │ ├── carouselspacing(_:).json │ │ │ ├── carouselstyle(_:).json │ │ │ ├── carouseltrigger(on:).json │ │ │ ├── clipped(antialiased:).json │ │ │ ├── clipshape(_:style:).json │ │ │ ├── colorinvert().json │ │ │ ├── colormultiply(_:).json │ │ │ ├── colorscheme(_:).json │ │ │ ├── compositinggroup().json │ │ │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-7c2i9.json │ │ │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-7p1mg.json │ │ │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-9t8f5.json │ │ │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-592a8.json │ │ │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-6sq5i.json │ │ │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-8ffij.json │ │ │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-455gp.json │ │ │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-7pvn4.json │ │ │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-8fhv.json │ │ │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-4bg57.json │ │ │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-4pxpc.json │ │ │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-50r8e.json │ │ │ ├── containershape(_:).json │ │ │ ├── contentshape(_:_:eofill:).json │ │ │ ├── contentshape(_:eofill:).json │ │ │ ├── contextmenu(_:).json │ │ │ ├── contextmenu(menuitems:).json │ │ │ ├── contrast(_:).json │ │ │ ├── controlgroupstyle(_:).json │ │ │ ├── controlsize(_:).json │ │ │ ├── coordinatespace(name:).json │ │ │ ├── cornerradius(_:antialiased:).json │ │ │ ├── datepickerstyle(_:).json │ │ │ ├── defaultappstorage(_:).json │ │ │ ├── deletedisabled(_:).json │ │ │ ├── disableautocorrection(_:).json │ │ │ ├── disabled(_:).json │ │ │ ├── drawinggroup(opaque:colormode:).json │ │ │ ├── dynamictypesize(_:).json │ │ │ ├── edgesignoringsafearea(_:).json │ │ │ ├── environment(_:_:).json │ │ │ ├── environmentobject(_:).json │ │ │ ├── exportsitemproviders(_:onexport:).json │ │ │ ├── exportsitemproviders(_:onexport:onedit:).json │ │ │ ├── fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-54p9i.json │ │ │ ├── fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-z1af.json │ │ │ ├── fileexporter(ispresented:documents:contenttype:oncompletion:)-4ixib.json │ │ │ ├── fileexporter(ispresented:documents:contenttype:oncompletion:)-72o0w.json │ │ │ ├── fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:).json │ │ │ ├── fileimporter(ispresented:allowedcontenttypes:oncompletion:).json │ │ │ ├── filemover(ispresented:file:oncompletion:).json │ │ │ ├── filemover(ispresented:files:oncompletion:).json │ │ │ ├── fixedsize().json │ │ │ ├── fixedsize(horizontal:vertical:).json │ │ │ ├── flipsforrighttoleftlayoutdirection(_:).json │ │ │ ├── focusable(_:).json │ │ │ ├── focusable(_:onfocuschange:).json │ │ │ ├── focused(_:).json │ │ │ ├── focused(_:equals:).json │ │ │ ├── focusedscenevalue(_:_:).json │ │ │ ├── focusedvalue(_:_:).json │ │ │ ├── focusscope(_:).json │ │ │ ├── font(_:).json │ │ │ ├── foregroundcolor(_:).json │ │ │ ├── foregroundstyle(_:).json │ │ │ ├── foregroundstyle(_:_:).json │ │ │ ├── foregroundstyle(_:_:_:).json │ │ │ ├── frame().json │ │ │ ├── frame(minwidth:idealwidth:maxwidth:minheight:idealheight:maxheight:alignment:).json │ │ │ ├── frame(width:height:alignment:).json │ │ │ ├── gesture(_:including:).json │ │ │ ├── grayscale(_:).json │ │ │ ├── groupboxstyle(_:).json │ │ │ ├── handlesexternalevents(preferring:allowing:).json │ │ │ ├── headerprominence(_:).json │ │ │ ├── help(_:)-4gfc1.json │ │ │ ├── help(_:)-57kg7.json │ │ │ ├── help(_:)-5c7gg.json │ │ │ ├── hidden().json │ │ │ ├── highprioritygesture(_:including:).json │ │ │ ├── horizontalradiogrouplayout().json │ │ │ ├── huerotation(_:).json │ │ │ ├── id(_:).json │ │ │ ├── ignoressafearea(_:edges:).json │ │ │ ├── imagescale(_:).json │ │ │ ├── importsitemproviders(_:onimport:).json │ │ │ ├── init(_:initialindex:content:)-6ou47.json │ │ │ ├── init(_:initialindex:content:)-9osfg.json │ │ │ ├── interactivedismissdisabled(_:).json │ │ │ ├── itemprovider(_:).json │ │ │ ├── keyboardshortcut(_:)-8kg9p.json │ │ │ ├── keyboardshortcut(_:)-92las.json │ │ │ ├── keyboardshortcut(_:modifiers:).json │ │ │ ├── keyboardshortcut(_:modifiers:localization:).json │ │ │ ├── labelshidden().json │ │ │ ├── labelstyle(_:).json │ │ │ ├── layoutpriority(_:).json │ │ │ ├── linelimit(_:).json │ │ │ ├── linespacing(_:).json │ │ │ ├── listitemtint(_:)-4okc6.json │ │ │ ├── listitemtint(_:)-8uys6.json │ │ │ ├── listrowbackground(_:).json │ │ │ ├── listrowinsets(_:).json │ │ │ ├── liststyle(_:).json │ │ │ ├── luminancetoalpha().json │ │ │ ├── mask(_:).json │ │ │ ├── mask(alignment:_:).json │ │ │ ├── matchedgeometryeffect(id:in:properties:anchor:issource:).json │ │ │ ├── menubuttonstyle(_:).json │ │ │ ├── menuindicator(_:).json │ │ │ ├── menustyle(_:).json │ │ │ ├── minimumscalefactor(_:).json │ │ │ ├── modifier(_:).json │ │ │ ├── monospaceddigit().json │ │ │ ├── movedisabled(_:).json │ │ │ ├── multilinetextalignment(_:).json │ │ │ ├── navigationsubtitle(_:)-4xcr1.json │ │ │ ├── navigationsubtitle(_:)-62wq4.json │ │ │ ├── navigationsubtitle(_:)-89wf8.json │ │ │ ├── navigationtitle(_:)-15ycd.json │ │ │ ├── navigationtitle(_:)-3gz4j.json │ │ │ ├── navigationtitle(_:)-6t67o.json │ │ │ ├── navigationtitle(_:)-8moj6.json │ │ │ ├── navigationviewstyle(_:).json │ │ │ ├── offset(_:).json │ │ │ ├── offset(x:y:).json │ │ │ ├── onappear(perform:).json │ │ │ ├── oncarousel(_:).json │ │ │ ├── oncarouseltranslation(_:).json │ │ │ ├── onchange(of:perform:).json │ │ │ ├── oncommand(_:perform:).json │ │ │ ├── oncontinueuseractivity(_:perform:).json │ │ │ ├── oncopycommand(perform:).json │ │ │ ├── oncutcommand(perform:).json │ │ │ ├── ondeletecommand(perform:).json │ │ │ ├── ondisappear(perform:).json │ │ │ ├── ondrag(_:).json │ │ │ ├── ondrag(_:preview:).json │ │ │ ├── ondrop(of:delegate:)-55jbd.json │ │ │ ├── ondrop(of:delegate:)-9xy3o.json │ │ │ ├── ondrop(of:istargeted:perform:)-2wosm.json │ │ │ ├── ondrop(of:istargeted:perform:)-4zd72.json │ │ │ ├── ondrop(of:istargeted:perform:)-6o6wo.json │ │ │ ├── ondrop(of:istargeted:perform:)-btgb.json │ │ │ ├── onexitcommand(perform:).json │ │ │ ├── onhover(perform:).json │ │ │ ├── onlongpressgesture(minimumduration:maximumdistance:perform:onpressingchanged:).json │ │ │ ├── onlongpressgesture(minimumduration:maximumdistance:pressing:perform:).json │ │ │ ├── onlongpressgesture(minimumduration:perform:onpressingchanged:).json │ │ │ ├── onlongpressgesture(minimumduration:pressing:perform:).json │ │ │ ├── onmovecommand(perform:).json │ │ │ ├── onopenurl(perform:).json │ │ │ ├── onpastecommand(of:perform:)-3phpt.json │ │ │ ├── onpastecommand(of:perform:)-7nzf4.json │ │ │ ├── onpastecommand(of:validator:perform:)-5h2lv.json │ │ │ ├── onpastecommand(of:validator:perform:)-7k6qm.json │ │ │ ├── onplaypausecommand(perform:).json │ │ │ ├── onpreferencechange(_:perform:).json │ │ │ ├── onreceive(_:perform:).json │ │ │ ├── onshuffle(_:).json │ │ │ ├── onshuffledeck(_:).json │ │ │ ├── onshuffledecktranslation(_:).json │ │ │ ├── onshuffletranslation(_:).json │ │ │ ├── onsubmit(of:_:).json │ │ │ ├── ontapgesture(count:perform:).json │ │ │ ├── opacity(_:).json │ │ │ ├── overlay(_:alignment:).json │ │ │ ├── overlay(_:ignoressafeareaedges:).json │ │ │ ├── overlay(_:in:fillstyle:).json │ │ │ ├── overlay(alignment:content:).json │ │ │ ├── overlaypreferencevalue(_:_:).json │ │ │ ├── padding(_:)-5f3wf.json │ │ │ ├── padding(_:)-7cp9q.json │ │ │ ├── padding(_:_:).json │ │ │ ├── pagecommand(value:in:step:).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 │ │ │ ├── prefersdefaultfocus(_:in:).json │ │ │ ├── presentedwindowstyle(_:).json │ │ │ ├── presentedwindowtoolbarstyle(_:).json │ │ │ ├── previewcontext(_:).json │ │ │ ├── previewdevice(_:).json │ │ │ ├── previewdisplayname(_:).json │ │ │ ├── previewinterfaceorientation(_:).json │ │ │ ├── previewlayout(_:).json │ │ │ ├── privacysensitive(_:).json │ │ │ ├── progressviewstyle(_:).json │ │ │ ├── projectioneffect(_:).json │ │ │ ├── redacted(reason:).json │ │ │ ├── refreshable(action:).json │ │ │ ├── rotation3deffect(_:axis:anchor:anchorz:perspective:).json │ │ │ ├── rotationeffect(_:anchor:).json │ │ │ ├── safeareainset(edge:alignment:spacing:content:)-4gojk.json │ │ │ ├── safeareainset(edge:alignment:spacing:content:)-9bx6p.json │ │ │ ├── saturation(_:).json │ │ │ ├── scaledtofill().json │ │ │ ├── scaledtofit().json │ │ │ ├── scaleeffect(_:anchor:)-4byje.json │ │ │ ├── scaleeffect(_:anchor:)-6bduh.json │ │ │ ├── scaleeffect(x:y:anchor:).json │ │ │ ├── scenepadding(_:).json │ │ │ ├── searchable(text:placement:prompt:)-2i9jl.json │ │ │ ├── searchable(text:placement:prompt:)-50j7i.json │ │ │ ├── searchable(text:placement:prompt:)-75a6t.json │ │ │ ├── searchable(text:placement:prompt:suggestions:)-5bsg8.json │ │ │ ├── searchable(text:placement:prompt:suggestions:)-5ib9a.json │ │ │ ├── searchable(text:placement:prompt:suggestions:)-8fyqc.json │ │ │ ├── searchcompletion(_:).json │ │ │ ├── shadow(color:radius:x:y:).json │ │ │ ├── sheet(ispresented:ondismiss:content:).json │ │ │ ├── sheet(item:ondismiss:content:).json │ │ │ ├── shuffleanimation(_:).json │ │ │ ├── shuffledeckanimation(_:).json │ │ │ ├── shuffledeckdisabled(_:).json │ │ │ ├── shuffledeckscale(_:).json │ │ │ ├── shuffledeckstyle(_:).json │ │ │ ├── shuffledecktrigger(on:).json │ │ │ ├── shuffledisabled(_:).json │ │ │ ├── shuffleoffset(_:).json │ │ │ ├── shufflepadding(_:).json │ │ │ ├── shufflescale(_:).json │ │ │ ├── shufflestyle(_:).json │ │ │ ├── shuffletrigger(on:).json │ │ │ ├── simultaneousgesture(_:including:).json │ │ │ ├── speechadjustedpitch(_:).json │ │ │ ├── speechalwaysincludespunctuation(_:).json │ │ │ ├── speechannouncementsqueued(_:).json │ │ │ ├── speechspellsoutcharacters(_:).json │ │ │ ├── submitlabel(_:).json │ │ │ ├── submitscope(_:).json │ │ │ ├── swipeactions(edge:allowsfullswipe:content:).json │ │ │ ├── symbolrenderingmode(_:).json │ │ │ ├── symbolvariant(_:).json │ │ │ ├── tabitem(_:).json │ │ │ ├── tablestyle(_:).json │ │ │ ├── tabviewstyle(_:).json │ │ │ ├── tag(_:).json │ │ │ ├── task(id:priority:_:).json │ │ │ ├── task(priority:_:).json │ │ │ ├── textcase(_:).json │ │ │ ├── textcontenttype(_:).json │ │ │ ├── textfieldstyle(_:).json │ │ │ ├── textselection(_:).json │ │ │ ├── tint(_:).json │ │ │ ├── togglestyle(_:).json │ │ │ ├── toolbar(content:)-2k0pt.json │ │ │ ├── toolbar(content:)-4sm5t.json │ │ │ ├── toolbar(id:content:).json │ │ │ ├── touchbar(_:).json │ │ │ ├── touchbar(content:).json │ │ │ ├── touchbarcustomizationlabel(_:).json │ │ │ ├── touchbaritempresence(_:).json │ │ │ ├── touchbaritemprincipal(_:).json │ │ │ ├── transaction(_:).json │ │ │ ├── transformanchorpreference(key:value:transform:).json │ │ │ ├── transformeffect(_:).json │ │ │ ├── transformenvironment(_:transform:).json │ │ │ ├── transformpreference(_:_:).json │ │ │ ├── transition(_:).json │ │ │ ├── truncationmode(_:).json │ │ │ ├── unredacted().json │ │ │ ├── useractivity(_:element:_:).json │ │ │ ├── useractivity(_:isactive:_:).json │ │ │ ├── view-implementations.json │ │ │ └── zindex(_:).json │ │ ├── shuffledeck.json │ │ ├── shuffledeckanimation/ │ │ │ ├── !=(_:_:).json │ │ │ ├── easein.json │ │ │ ├── easeinout.json │ │ │ ├── easeout.json │ │ │ ├── equatable-implementations.json │ │ │ └── linear.json │ │ ├── shuffledeckanimation.json │ │ ├── shuffledeckcontext/ │ │ │ ├── direction.json │ │ │ ├── index.json │ │ │ └── previousindex.json │ │ ├── shuffledeckcontext.json │ │ ├── shuffledeckdirection/ │ │ │ ├── !=(_:_:).json │ │ │ ├── equatable-implementations.json │ │ │ ├── left.json │ │ │ └── right.json │ │ ├── shuffledeckdirection.json │ │ ├── shuffledeckstyle/ │ │ │ ├── !=(_:_:).json │ │ │ ├── equatable-implementations.json │ │ │ ├── finiteshuffle.json │ │ │ └── infiniteshuffle.json │ │ ├── shuffledeckstyle.json │ │ ├── shuffledirection/ │ │ │ ├── !=(_:_:).json │ │ │ ├── equatable-implementations.json │ │ │ ├── left.json │ │ │ └── right.json │ │ ├── shuffledirection.json │ │ ├── shufflestack/ │ │ │ ├── accentcolor(_:).json │ │ │ ├── accessibility(activationpoint:)-1nikr.json │ │ │ ├── accessibility(activationpoint:)-9o1ut.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:_:)-5nf29.json │ │ │ ├── accessibilityaction(named:_:)-7rxae.json │ │ │ ├── accessibilityaction(named:_:)-7tk0c.json │ │ │ ├── accessibilityactivationpoint(_:)-57vfb.json │ │ │ ├── accessibilityactivationpoint(_:)-9osvr.json │ │ │ ├── accessibilityaddtraits(_:).json │ │ │ ├── accessibilityadjustableaction(_:).json │ │ │ ├── accessibilitychartdescriptor(_:).json │ │ │ ├── accessibilitychildren(children:).json │ │ │ ├── accessibilitycustomcontent(_:_:importance:)-1gi9v.json │ │ │ ├── accessibilitycustomcontent(_:_:importance:)-375xz.json │ │ │ ├── accessibilitycustomcontent(_:_:importance:)-571fc.json │ │ │ ├── accessibilitycustomcontent(_:_:importance:)-72sim.json │ │ │ ├── accessibilitycustomcontent(_:_:importance:)-7h1pz.json │ │ │ ├── accessibilitycustomcontent(_:_:importance:)-8sma2.json │ │ │ ├── accessibilitycustomcontent(_:_:importance:)-956rk.json │ │ │ ├── accessibilitycustomcontent(_:_:importance:)-96ur4.json │ │ │ ├── accessibilityelement(children:).json │ │ │ ├── accessibilityfocused(_:).json │ │ │ ├── accessibilityfocused(_:equals:).json │ │ │ ├── accessibilityheading(_:).json │ │ │ ├── accessibilityhidden(_:).json │ │ │ ├── accessibilityhint(_:)-45b9m.json │ │ │ ├── accessibilityhint(_:)-6451d.json │ │ │ ├── accessibilityhint(_:)-6m2eb.json │ │ │ ├── accessibilityidentifier(_:).json │ │ │ ├── accessibilityignoresinvertcolors(_:).json │ │ │ ├── accessibilityinputlabels(_:)-3mfon.json │ │ │ ├── accessibilityinputlabels(_:)-7hs3b.json │ │ │ ├── accessibilityinputlabels(_:)-7kg3p.json │ │ │ ├── accessibilitylabel(_:)-3has0.json │ │ │ ├── accessibilitylabel(_:)-6dv6y.json │ │ │ ├── accessibilitylabel(_:)-e66p.json │ │ │ ├── accessibilitylabeledpair(role:id:in:).json │ │ │ ├── accessibilitylinkedgroup(id:in:).json │ │ │ ├── accessibilityremovetraits(_:).json │ │ │ ├── accessibilityrepresentation(representation:).json │ │ │ ├── accessibilityrespondstouserinteraction(_:).json │ │ │ ├── accessibilityrotor(_:entries:)-3a01s.json │ │ │ ├── accessibilityrotor(_:entries:)-661b4.json │ │ │ ├── accessibilityrotor(_:entries:)-7kbeo.json │ │ │ ├── accessibilityrotor(_:entries:)-f4c5.json │ │ │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-1kufn.json │ │ │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-1o7jk.json │ │ │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-2ng74.json │ │ │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-6akr8.json │ │ │ ├── accessibilityrotor(_:entries:entrylabel:)-6o30j.json │ │ │ ├── accessibilityrotor(_:entries:entrylabel:)-8e6r9.json │ │ │ ├── accessibilityrotor(_:entries:entrylabel:)-bva6.json │ │ │ ├── accessibilityrotor(_:entries:entrylabel:)-cxx7.json │ │ │ ├── accessibilityrotor(_:textranges:)-1v5os.json │ │ │ ├── accessibilityrotor(_:textranges:)-5mce6.json │ │ │ ├── accessibilityrotor(_:textranges:)-7fpc1.json │ │ │ ├── accessibilityrotor(_:textranges:)-91on2.json │ │ │ ├── accessibilityrotorentry(id:in:).json │ │ │ ├── accessibilityscrollaction(_:).json │ │ │ ├── accessibilityshowslargecontentviewer().json │ │ │ ├── accessibilityshowslargecontentviewer(_:).json │ │ │ ├── accessibilitysortpriority(_:).json │ │ │ ├── accessibilitytextcontenttype(_:).json │ │ │ ├── accessibilityvalue(_:)-6kh76.json │ │ │ ├── accessibilityvalue(_:)-6x5in.json │ │ │ ├── accessibilityvalue(_:)-tcbi.json │ │ │ ├── alert(_:ispresented:actions:)-13ppe.json │ │ │ ├── alert(_:ispresented:actions:)-31fv4.json │ │ │ ├── alert(_:ispresented:actions:)-svpk.json │ │ │ ├── alert(_:ispresented:actions:message:)-1lplz.json │ │ │ ├── alert(_:ispresented:actions:message:)-42hzu.json │ │ │ ├── alert(_:ispresented:actions:message:)-8jr1q.json │ │ │ ├── alert(_:ispresented:presenting:actions:)-135kk.json │ │ │ ├── alert(_:ispresented:presenting:actions:)-7je0d.json │ │ │ ├── alert(_:ispresented:presenting:actions:)-7zzve.json │ │ │ ├── alert(_:ispresented:presenting:actions:message:)-17uu0.json │ │ │ ├── alert(_:ispresented:presenting:actions:message:)-36zvz.json │ │ │ ├── alert(_:ispresented:presenting:actions:message:)-7caah.json │ │ │ ├── alert(ispresented:content:).json │ │ │ ├── alert(ispresented:error:actions:).json │ │ │ ├── alert(ispresented:error:actions:message:).json │ │ │ ├── alert(item:content:).json │ │ │ ├── alignmentguide(_:computevalue:)-23g26.json │ │ │ ├── alignmentguide(_:computevalue:)-4kcej.json │ │ │ ├── allowshittesting(_:).json │ │ │ ├── allowstightening(_:).json │ │ │ ├── anchorpreference(key:value:transform:).json │ │ │ ├── animation(_:).json │ │ │ ├── animation(_:value:).json │ │ │ ├── aspectratio(_:contentmode:)-9iav9.json │ │ │ ├── aspectratio(_:contentmode:)-ggdx.json │ │ │ ├── background(_:alignment:).json │ │ │ ├── background(_:ignoressafeareaedges:).json │ │ │ ├── background(_:in:fillstyle:)-1a2bf.json │ │ │ ├── background(_:in:fillstyle:)-8qwr1.json │ │ │ ├── background(alignment:content:).json │ │ │ ├── background(ignoressafeareaedges:).json │ │ │ ├── background(in:fillstyle:)-58j5e.json │ │ │ ├── background(in:fillstyle:)-8w09p.json │ │ │ ├── backgroundpreferencevalue(_:_:).json │ │ │ ├── badge(_:)-26gjx.json │ │ │ ├── badge(_:)-2cz64.json │ │ │ ├── badge(_:)-31kbp.json │ │ │ ├── badge(_:)-4i0v1.json │ │ │ ├── blendmode(_:).json │ │ │ ├── blur(radius:opaque:).json │ │ │ ├── body.json │ │ │ ├── border(_:width:).json │ │ │ ├── brightness(_:).json │ │ │ ├── buttonbordershape(_:).json │ │ │ ├── buttonstyle(_:)-42cf.json │ │ │ ├── buttonstyle(_:)-4hs9e.json │ │ │ ├── carouselanimation(_:).json │ │ │ ├── carouseldisabled(_:).json │ │ │ ├── carouselpadding(_:).json │ │ │ ├── carouselscale(_:).json │ │ │ ├── carouselspacing(_:).json │ │ │ ├── carouselstyle(_:).json │ │ │ ├── carouseltrigger(on:).json │ │ │ ├── clipped(antialiased:).json │ │ │ ├── clipshape(_:style:).json │ │ │ ├── colorinvert().json │ │ │ ├── colormultiply(_:).json │ │ │ ├── colorscheme(_:).json │ │ │ ├── compositinggroup().json │ │ │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-41ud8.json │ │ │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-4ywhx.json │ │ │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-7ipnf.json │ │ │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-1kurz.json │ │ │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-5vmyl.json │ │ │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-9sue3.json │ │ │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-1tkx.json │ │ │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-5diu1.json │ │ │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-7pkdq.json │ │ │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-296mh.json │ │ │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-5uj0y.json │ │ │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-7cjsq.json │ │ │ ├── containershape(_:).json │ │ │ ├── contentshape(_:_:eofill:).json │ │ │ ├── contentshape(_:eofill:).json │ │ │ ├── contextmenu(_:).json │ │ │ ├── contextmenu(menuitems:).json │ │ │ ├── contrast(_:).json │ │ │ ├── controlgroupstyle(_:).json │ │ │ ├── controlsize(_:).json │ │ │ ├── coordinatespace(name:).json │ │ │ ├── cornerradius(_:antialiased:).json │ │ │ ├── datepickerstyle(_:).json │ │ │ ├── defaultappstorage(_:).json │ │ │ ├── deletedisabled(_:).json │ │ │ ├── disableautocorrection(_:).json │ │ │ ├── disabled(_:).json │ │ │ ├── drawinggroup(opaque:colormode:).json │ │ │ ├── dynamictypesize(_:).json │ │ │ ├── edgesignoringsafearea(_:).json │ │ │ ├── environment(_:_:).json │ │ │ ├── environmentobject(_:).json │ │ │ ├── exportsitemproviders(_:onexport:).json │ │ │ ├── exportsitemproviders(_:onexport:onedit:).json │ │ │ ├── fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-6evgr.json │ │ │ ├── fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-8iv2y.json │ │ │ ├── fileexporter(ispresented:documents:contenttype:oncompletion:)-233kd.json │ │ │ ├── fileexporter(ispresented:documents:contenttype:oncompletion:)-7map2.json │ │ │ ├── fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:).json │ │ │ ├── fileimporter(ispresented:allowedcontenttypes:oncompletion:).json │ │ │ ├── filemover(ispresented:file:oncompletion:).json │ │ │ ├── filemover(ispresented:files:oncompletion:).json │ │ │ ├── fixedsize().json │ │ │ ├── fixedsize(horizontal:vertical:).json │ │ │ ├── flipsforrighttoleftlayoutdirection(_:).json │ │ │ ├── focusable(_:).json │ │ │ ├── focusable(_:onfocuschange:).json │ │ │ ├── focused(_:).json │ │ │ ├── focused(_:equals:).json │ │ │ ├── focusedscenevalue(_:_:).json │ │ │ ├── focusedvalue(_:_:).json │ │ │ ├── focusscope(_:).json │ │ │ ├── font(_:).json │ │ │ ├── foregroundcolor(_:).json │ │ │ ├── foregroundstyle(_:).json │ │ │ ├── foregroundstyle(_:_:).json │ │ │ ├── foregroundstyle(_:_:_:).json │ │ │ ├── frame().json │ │ │ ├── frame(minwidth:idealwidth:maxwidth:minheight:idealheight:maxheight:alignment:).json │ │ │ ├── frame(width:height:alignment:).json │ │ │ ├── gesture(_:including:).json │ │ │ ├── grayscale(_:).json │ │ │ ├── groupboxstyle(_:).json │ │ │ ├── handlesexternalevents(preferring:allowing:).json │ │ │ ├── headerprominence(_:).json │ │ │ ├── help(_:)-296.json │ │ │ ├── help(_:)-2u744.json │ │ │ ├── help(_:)-4q5ms.json │ │ │ ├── hidden().json │ │ │ ├── highprioritygesture(_:including:).json │ │ │ ├── horizontalradiogrouplayout().json │ │ │ ├── huerotation(_:).json │ │ │ ├── id(_:).json │ │ │ ├── ignoressafearea(_:edges:).json │ │ │ ├── imagescale(_:).json │ │ │ ├── importsitemproviders(_:onimport:).json │ │ │ ├── init(_:initialindex:stackcontent:)-4x5f3.json │ │ │ ├── init(_:initialindex:stackcontent:)-8ktnr.json │ │ │ ├── interactivedismissdisabled(_:).json │ │ │ ├── itemprovider(_:).json │ │ │ ├── keyboardshortcut(_:)-30f12.json │ │ │ ├── keyboardshortcut(_:)-38k96.json │ │ │ ├── keyboardshortcut(_:modifiers:).json │ │ │ ├── keyboardshortcut(_:modifiers:localization:).json │ │ │ ├── labelshidden().json │ │ │ ├── labelstyle(_:).json │ │ │ ├── layoutpriority(_:).json │ │ │ ├── linelimit(_:).json │ │ │ ├── linespacing(_:).json │ │ │ ├── listitemtint(_:)-66j6h.json │ │ │ ├── listitemtint(_:)-6zn9q.json │ │ │ ├── listrowbackground(_:).json │ │ │ ├── listrowinsets(_:).json │ │ │ ├── liststyle(_:).json │ │ │ ├── luminancetoalpha().json │ │ │ ├── mask(_:).json │ │ │ ├── mask(alignment:_:).json │ │ │ ├── matchedgeometryeffect(id:in:properties:anchor:issource:).json │ │ │ ├── menubuttonstyle(_:).json │ │ │ ├── menuindicator(_:).json │ │ │ ├── menustyle(_:).json │ │ │ ├── minimumscalefactor(_:).json │ │ │ ├── modifier(_:).json │ │ │ ├── monospaceddigit().json │ │ │ ├── movedisabled(_:).json │ │ │ ├── multilinetextalignment(_:).json │ │ │ ├── navigationsubtitle(_:)-16d52.json │ │ │ ├── navigationsubtitle(_:)-206md.json │ │ │ ├── navigationsubtitle(_:)-7em2i.json │ │ │ ├── navigationtitle(_:)-7aj99.json │ │ │ ├── navigationtitle(_:)-7jd07.json │ │ │ ├── navigationtitle(_:)-7twkm.json │ │ │ ├── navigationtitle(_:)-7w547.json │ │ │ ├── navigationviewstyle(_:).json │ │ │ ├── offset(_:).json │ │ │ ├── offset(x:y:).json │ │ │ ├── onappear(perform:).json │ │ │ ├── oncarousel(_:).json │ │ │ ├── oncarouseltranslation(_:).json │ │ │ ├── onchange(of:perform:).json │ │ │ ├── oncommand(_:perform:).json │ │ │ ├── oncontinueuseractivity(_:perform:).json │ │ │ ├── oncopycommand(perform:).json │ │ │ ├── oncutcommand(perform:).json │ │ │ ├── ondeletecommand(perform:).json │ │ │ ├── ondisappear(perform:).json │ │ │ ├── ondrag(_:).json │ │ │ ├── ondrag(_:preview:).json │ │ │ ├── ondrop(of:delegate:)-1ea27.json │ │ │ ├── ondrop(of:delegate:)-8thdr.json │ │ │ ├── ondrop(of:istargeted:perform:)-363wn.json │ │ │ ├── ondrop(of:istargeted:perform:)-3bmbv.json │ │ │ ├── ondrop(of:istargeted:perform:)-82gpe.json │ │ │ ├── ondrop(of:istargeted:perform:)-84ef9.json │ │ │ ├── onexitcommand(perform:).json │ │ │ ├── onhover(perform:).json │ │ │ ├── onlongpressgesture(minimumduration:maximumdistance:perform:onpressingchanged:).json │ │ │ ├── onlongpressgesture(minimumduration:maximumdistance:pressing:perform:).json │ │ │ ├── onlongpressgesture(minimumduration:perform:onpressingchanged:).json │ │ │ ├── onlongpressgesture(minimumduration:pressing:perform:).json │ │ │ ├── onmovecommand(perform:).json │ │ │ ├── onopenurl(perform:).json │ │ │ ├── onpastecommand(of:perform:)-4k6ie.json │ │ │ ├── onpastecommand(of:perform:)-wliz.json │ │ │ ├── onpastecommand(of:validator:perform:)-7tcqn.json │ │ │ ├── onpastecommand(of:validator:perform:)-9ddq9.json │ │ │ ├── onplaypausecommand(perform:).json │ │ │ ├── onpreferencechange(_:perform:).json │ │ │ ├── onreceive(_:perform:).json │ │ │ ├── onshuffle(_:).json │ │ │ ├── onshuffledeck(_:).json │ │ │ ├── onshuffledecktranslation(_:).json │ │ │ ├── onshuffletranslation(_:).json │ │ │ ├── onsubmit(of:_:).json │ │ │ ├── ontapgesture(count:perform:).json │ │ │ ├── opacity(_:).json │ │ │ ├── overlay(_:alignment:).json │ │ │ ├── overlay(_:ignoressafeareaedges:).json │ │ │ ├── overlay(_:in:fillstyle:).json │ │ │ ├── overlay(alignment:content:).json │ │ │ ├── overlaypreferencevalue(_:_:).json │ │ │ ├── padding(_:)-7zetw.json │ │ │ ├── padding(_:)-9obs7.json │ │ │ ├── padding(_:_:).json │ │ │ ├── pagecommand(value:in:step:).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 │ │ │ ├── prefersdefaultfocus(_:in:).json │ │ │ ├── presentedwindowstyle(_:).json │ │ │ ├── presentedwindowtoolbarstyle(_:).json │ │ │ ├── previewcontext(_:).json │ │ │ ├── previewdevice(_:).json │ │ │ ├── previewdisplayname(_:).json │ │ │ ├── previewinterfaceorientation(_:).json │ │ │ ├── previewlayout(_:).json │ │ │ ├── privacysensitive(_:).json │ │ │ ├── progressviewstyle(_:).json │ │ │ ├── projectioneffect(_:).json │ │ │ ├── redacted(reason:).json │ │ │ ├── refreshable(action:).json │ │ │ ├── rotation3deffect(_:axis:anchor:anchorz:perspective:).json │ │ │ ├── rotationeffect(_:anchor:).json │ │ │ ├── safeareainset(edge:alignment:spacing:content:)-9cc9j.json │ │ │ ├── safeareainset(edge:alignment:spacing:content:)-9ojua.json │ │ │ ├── saturation(_:).json │ │ │ ├── scaledtofill().json │ │ │ ├── scaledtofit().json │ │ │ ├── scaleeffect(_:anchor:)-2caa5.json │ │ │ ├── scaleeffect(_:anchor:)-718iu.json │ │ │ ├── scaleeffect(x:y:anchor:).json │ │ │ ├── scenepadding(_:).json │ │ │ ├── searchable(text:placement:prompt:)-2vm7x.json │ │ │ ├── searchable(text:placement:prompt:)-8rgzb.json │ │ │ ├── searchable(text:placement:prompt:)-988ga.json │ │ │ ├── searchable(text:placement:prompt:suggestions:)-3zci7.json │ │ │ ├── searchable(text:placement:prompt:suggestions:)-5taln.json │ │ │ ├── searchable(text:placement:prompt:suggestions:)-8jhzt.json │ │ │ ├── searchcompletion(_:).json │ │ │ ├── shadow(color:radius:x:y:).json │ │ │ ├── sheet(ispresented:ondismiss:content:).json │ │ │ ├── sheet(item:ondismiss:content:).json │ │ │ ├── shuffleanimation(_:).json │ │ │ ├── shuffledeckanimation(_:).json │ │ │ ├── shuffledeckdisabled(_:).json │ │ │ ├── shuffledeckscale(_:).json │ │ │ ├── shuffledeckstyle(_:).json │ │ │ ├── shuffledecktrigger(on:).json │ │ │ ├── shuffledisabled(_:).json │ │ │ ├── shuffleoffset(_:).json │ │ │ ├── shufflepadding(_:).json │ │ │ ├── shufflescale(_:).json │ │ │ ├── shufflestyle(_:).json │ │ │ ├── shuffletrigger(on:).json │ │ │ ├── simultaneousgesture(_:including:).json │ │ │ ├── speechadjustedpitch(_:).json │ │ │ ├── speechalwaysincludespunctuation(_:).json │ │ │ ├── speechannouncementsqueued(_:).json │ │ │ ├── speechspellsoutcharacters(_:).json │ │ │ ├── submitlabel(_:).json │ │ │ ├── submitscope(_:).json │ │ │ ├── swipeactions(edge:allowsfullswipe:content:).json │ │ │ ├── symbolrenderingmode(_:).json │ │ │ ├── symbolvariant(_:).json │ │ │ ├── tabitem(_:).json │ │ │ ├── tablestyle(_:).json │ │ │ ├── tabviewstyle(_:).json │ │ │ ├── tag(_:).json │ │ │ ├── task(id:priority:_:).json │ │ │ ├── task(priority:_:).json │ │ │ ├── textcase(_:).json │ │ │ ├── textcontenttype(_:).json │ │ │ ├── textfieldstyle(_:).json │ │ │ ├── textselection(_:).json │ │ │ ├── tint(_:).json │ │ │ ├── togglestyle(_:).json │ │ │ ├── toolbar(content:)-2fsde.json │ │ │ ├── toolbar(content:)-9838r.json │ │ │ ├── toolbar(id:content:).json │ │ │ ├── touchbar(_:).json │ │ │ ├── touchbar(content:).json │ │ │ ├── touchbarcustomizationlabel(_:).json │ │ │ ├── touchbaritempresence(_:).json │ │ │ ├── touchbaritemprincipal(_:).json │ │ │ ├── transaction(_:).json │ │ │ ├── transformanchorpreference(key:value:transform:).json │ │ │ ├── transformeffect(_:).json │ │ │ ├── transformenvironment(_:transform:).json │ │ │ ├── transformpreference(_:_:).json │ │ │ ├── transition(_:).json │ │ │ ├── truncationmode(_:).json │ │ │ ├── unredacted().json │ │ │ ├── useractivity(_:element:_:).json │ │ │ ├── useractivity(_:isactive:_:).json │ │ │ ├── view-implementations.json │ │ │ └── zindex(_:).json │ │ ├── shufflestack.json │ │ ├── shufflestyle/ │ │ │ ├── !=(_:_:).json │ │ │ ├── equatable-implementations.json │ │ │ ├── rotatein.json │ │ │ ├── rotateout.json │ │ │ └── slide.json │ │ └── shufflestyle.json │ └── shuffleit.json ├── documentation/ │ └── shuffleit/ │ ├── carouselanimation/ │ │ ├── !=(_:_:)/ │ │ │ └── index.html │ │ ├── easein/ │ │ │ └── index.html │ │ ├── easeinout/ │ │ │ └── index.html │ │ ├── easeout/ │ │ │ └── index.html │ │ ├── equatable-implementations/ │ │ │ └── index.html │ │ ├── index.html │ │ └── linear/ │ │ └── index.html │ ├── carouselcontext/ │ │ ├── direction/ │ │ │ └── index.html │ │ ├── index/ │ │ │ └── index.html │ │ ├── index.html │ │ └── previousindex/ │ │ └── index.html │ ├── carouseldirection/ │ │ ├── !=(_:_:)/ │ │ │ └── index.html │ │ ├── equatable-implementations/ │ │ │ └── index.html │ │ ├── index.html │ │ ├── left/ │ │ │ └── index.html │ │ └── right/ │ │ └── index.html │ ├── carouselstack/ │ │ ├── accentcolor(_:)/ │ │ │ └── index.html │ │ ├── accessibility(activationpoint:)-4y62/ │ │ │ └── index.html │ │ ├── accessibility(activationpoint:)-695kx/ │ │ │ └── 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:_:)-3lqsr/ │ │ │ └── index.html │ │ ├── accessibilityaction(named:_:)-69c69/ │ │ │ └── index.html │ │ ├── accessibilityaction(named:_:)-rgyh/ │ │ │ └── index.html │ │ ├── accessibilityactivationpoint(_:)-5bbv5/ │ │ │ └── index.html │ │ ├── accessibilityactivationpoint(_:)-8dokx/ │ │ │ └── index.html │ │ ├── accessibilityaddtraits(_:)/ │ │ │ └── index.html │ │ ├── accessibilityadjustableaction(_:)/ │ │ │ └── index.html │ │ ├── accessibilitychartdescriptor(_:)/ │ │ │ └── index.html │ │ ├── accessibilitychildren(children:)/ │ │ │ └── index.html │ │ ├── accessibilitycustomcontent(_:_:importance:)-1586n/ │ │ │ └── index.html │ │ ├── accessibilitycustomcontent(_:_:importance:)-1u9b5/ │ │ │ └── index.html │ │ ├── accessibilitycustomcontent(_:_:importance:)-3t2kq/ │ │ │ └── index.html │ │ ├── accessibilitycustomcontent(_:_:importance:)-46frq/ │ │ │ └── index.html │ │ ├── accessibilitycustomcontent(_:_:importance:)-47g1f/ │ │ │ └── index.html │ │ ├── accessibilitycustomcontent(_:_:importance:)-5xqqc/ │ │ │ └── index.html │ │ ├── accessibilitycustomcontent(_:_:importance:)-8rfm7/ │ │ │ └── index.html │ │ ├── accessibilitycustomcontent(_:_:importance:)-9cou3/ │ │ │ └── index.html │ │ ├── accessibilityelement(children:)/ │ │ │ └── index.html │ │ ├── accessibilityfocused(_:)/ │ │ │ └── index.html │ │ ├── accessibilityfocused(_:equals:)/ │ │ │ └── index.html │ │ ├── accessibilityheading(_:)/ │ │ │ └── index.html │ │ ├── accessibilityhidden(_:)/ │ │ │ └── index.html │ │ ├── accessibilityhint(_:)-2j7te/ │ │ │ └── index.html │ │ ├── accessibilityhint(_:)-37ope/ │ │ │ └── index.html │ │ ├── accessibilityhint(_:)-7yi0h/ │ │ │ └── index.html │ │ ├── accessibilityidentifier(_:)/ │ │ │ └── index.html │ │ ├── accessibilityignoresinvertcolors(_:)/ │ │ │ └── index.html │ │ ├── accessibilityinputlabels(_:)-3feba/ │ │ │ └── index.html │ │ ├── accessibilityinputlabels(_:)-3p703/ │ │ │ └── index.html │ │ ├── accessibilityinputlabels(_:)-95tn0/ │ │ │ └── index.html │ │ ├── accessibilitylabel(_:)-2tohn/ │ │ │ └── index.html │ │ ├── accessibilitylabel(_:)-755g2/ │ │ │ └── index.html │ │ ├── accessibilitylabel(_:)-8bin6/ │ │ │ └── index.html │ │ ├── accessibilitylabeledpair(role:id:in:)/ │ │ │ └── index.html │ │ ├── accessibilitylinkedgroup(id:in:)/ │ │ │ └── index.html │ │ ├── accessibilityremovetraits(_:)/ │ │ │ └── index.html │ │ ├── accessibilityrepresentation(representation:)/ │ │ │ └── index.html │ │ ├── accessibilityrespondstouserinteraction(_:)/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:entries:)-1c2au/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:entries:)-4pacb/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:entries:)-4w7j0/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:entries:)-825mo/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-1w44t/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-4vvcg/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-5gz2c/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-utor/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:entries:entrylabel:)-25t4x/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:entries:entrylabel:)-3evdd/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:entries:entrylabel:)-4e9vu/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:entries:entrylabel:)-59b0s/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:textranges:)-25npe/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:textranges:)-3d2p8/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:textranges:)-4jxor/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:textranges:)-9sgga/ │ │ │ └── index.html │ │ ├── accessibilityrotorentry(id:in:)/ │ │ │ └── index.html │ │ ├── accessibilityscrollaction(_:)/ │ │ │ └── index.html │ │ ├── accessibilityshowslargecontentviewer()/ │ │ │ └── index.html │ │ ├── accessibilityshowslargecontentviewer(_:)/ │ │ │ └── index.html │ │ ├── accessibilitysortpriority(_:)/ │ │ │ └── index.html │ │ ├── accessibilitytextcontenttype(_:)/ │ │ │ └── index.html │ │ ├── accessibilityvalue(_:)-5fw6g/ │ │ │ └── index.html │ │ ├── accessibilityvalue(_:)-5y8gy/ │ │ │ └── index.html │ │ ├── accessibilityvalue(_:)-8ihs6/ │ │ │ └── index.html │ │ ├── alert(_:ispresented:actions:)-1q2gb/ │ │ │ └── index.html │ │ ├── alert(_:ispresented:actions:)-76wk8/ │ │ │ └── index.html │ │ ├── alert(_:ispresented:actions:)-7wghk/ │ │ │ └── index.html │ │ ├── alert(_:ispresented:actions:message:)-5s7hn/ │ │ │ └── index.html │ │ ├── alert(_:ispresented:actions:message:)-9a4q7/ │ │ │ └── index.html │ │ ├── alert(_:ispresented:actions:message:)-f5o2/ │ │ │ └── index.html │ │ ├── alert(_:ispresented:presenting:actions:)-4edmo/ │ │ │ └── index.html │ │ ├── alert(_:ispresented:presenting:actions:)-4uw7u/ │ │ │ └── index.html │ │ ├── alert(_:ispresented:presenting:actions:)-8axxo/ │ │ │ └── index.html │ │ ├── alert(_:ispresented:presenting:actions:message:)-226oe/ │ │ │ └── index.html │ │ ├── alert(_:ispresented:presenting:actions:message:)-4tvm3/ │ │ │ └── index.html │ │ ├── alert(_:ispresented:presenting:actions:message:)-7b0gl/ │ │ │ └── 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:)-4r6p/ │ │ │ └── index.html │ │ ├── alignmentguide(_:computevalue:)-8e6vc/ │ │ │ └── index.html │ │ ├── allowshittesting(_:)/ │ │ │ └── index.html │ │ ├── allowstightening(_:)/ │ │ │ └── index.html │ │ ├── anchorpreference(key:value:transform:)/ │ │ │ └── index.html │ │ ├── animation(_:)/ │ │ │ └── index.html │ │ ├── animation(_:value:)/ │ │ │ └── index.html │ │ ├── aspectratio(_:contentmode:)-72t0z/ │ │ │ └── index.html │ │ ├── aspectratio(_:contentmode:)-8gir9/ │ │ │ └── index.html │ │ ├── background(_:alignment:)/ │ │ │ └── index.html │ │ ├── background(_:ignoressafeareaedges:)/ │ │ │ └── index.html │ │ ├── background(_:in:fillstyle:)-4hb5h/ │ │ │ └── index.html │ │ ├── background(_:in:fillstyle:)-5xuxn/ │ │ │ └── index.html │ │ ├── background(alignment:content:)/ │ │ │ └── index.html │ │ ├── background(ignoressafeareaedges:)/ │ │ │ └── index.html │ │ ├── background(in:fillstyle:)-2lcq8/ │ │ │ └── index.html │ │ ├── background(in:fillstyle:)-6gtsb/ │ │ │ └── index.html │ │ ├── backgroundpreferencevalue(_:_:)/ │ │ │ └── index.html │ │ ├── badge(_:)-10ceg/ │ │ │ └── index.html │ │ ├── badge(_:)-6ah2/ │ │ │ └── index.html │ │ ├── badge(_:)-7kz0m/ │ │ │ └── index.html │ │ ├── badge(_:)-8lj4d/ │ │ │ └── index.html │ │ ├── blendmode(_:)/ │ │ │ └── index.html │ │ ├── blur(radius:opaque:)/ │ │ │ └── index.html │ │ ├── body/ │ │ │ └── index.html │ │ ├── border(_:width:)/ │ │ │ └── index.html │ │ ├── brightness(_:)/ │ │ │ └── index.html │ │ ├── buttonbordershape(_:)/ │ │ │ └── index.html │ │ ├── buttonstyle(_:)-6awhx/ │ │ │ └── index.html │ │ ├── buttonstyle(_:)-8ljh4/ │ │ │ └── index.html │ │ ├── carouselanimation(_:)/ │ │ │ └── index.html │ │ ├── carouseldisabled(_:)/ │ │ │ └── index.html │ │ ├── carouselpadding(_:)/ │ │ │ └── index.html │ │ ├── carouselscale(_:)/ │ │ │ └── index.html │ │ ├── carouselspacing(_:)/ │ │ │ └── index.html │ │ ├── carouselstyle(_:)/ │ │ │ └── index.html │ │ ├── carouseltrigger(on:)/ │ │ │ └── index.html │ │ ├── clipped(antialiased:)/ │ │ │ └── index.html │ │ ├── clipshape(_:style:)/ │ │ │ └── index.html │ │ ├── colorinvert()/ │ │ │ └── index.html │ │ ├── colormultiply(_:)/ │ │ │ └── index.html │ │ ├── colorscheme(_:)/ │ │ │ └── index.html │ │ ├── compositinggroup()/ │ │ │ └── index.html │ │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-1uzrt/ │ │ │ └── index.html │ │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-5d29j/ │ │ │ └── index.html │ │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-718e5/ │ │ │ └── index.html │ │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-65zoh/ │ │ │ └── index.html │ │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-951t3/ │ │ │ └── index.html │ │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-9yu7k/ │ │ │ └── index.html │ │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-1ji6h/ │ │ │ └── index.html │ │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-4fi9z/ │ │ │ └── index.html │ │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-51cln/ │ │ │ └── index.html │ │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-2m470/ │ │ │ └── index.html │ │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-9o8j/ │ │ │ └── index.html │ │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-g5bx/ │ │ │ └── index.html │ │ ├── containershape(_:)/ │ │ │ └── index.html │ │ ├── contentshape(_:_:eofill:)/ │ │ │ └── index.html │ │ ├── contentshape(_:eofill:)/ │ │ │ └── index.html │ │ ├── contextmenu(_:)/ │ │ │ └── index.html │ │ ├── contextmenu(menuitems:)/ │ │ │ └── index.html │ │ ├── contrast(_:)/ │ │ │ └── index.html │ │ ├── controlgroupstyle(_:)/ │ │ │ └── index.html │ │ ├── controlsize(_:)/ │ │ │ └── index.html │ │ ├── coordinatespace(name:)/ │ │ │ └── index.html │ │ ├── cornerradius(_:antialiased:)/ │ │ │ └── index.html │ │ ├── datepickerstyle(_:)/ │ │ │ └── index.html │ │ ├── defaultappstorage(_:)/ │ │ │ └── index.html │ │ ├── deletedisabled(_:)/ │ │ │ └── index.html │ │ ├── disableautocorrection(_:)/ │ │ │ └── index.html │ │ ├── disabled(_:)/ │ │ │ └── index.html │ │ ├── drawinggroup(opaque:colormode:)/ │ │ │ └── index.html │ │ ├── dynamictypesize(_:)/ │ │ │ └── index.html │ │ ├── edgesignoringsafearea(_:)/ │ │ │ └── index.html │ │ ├── environment(_:_:)/ │ │ │ └── index.html │ │ ├── environmentobject(_:)/ │ │ │ └── index.html │ │ ├── exportsitemproviders(_:onexport:)/ │ │ │ └── index.html │ │ ├── exportsitemproviders(_:onexport:onedit:)/ │ │ │ └── index.html │ │ ├── fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-2xo1j/ │ │ │ └── index.html │ │ ├── fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-5w70m/ │ │ │ └── index.html │ │ ├── fileexporter(ispresented:documents:contenttype:oncompletion:)-9dfyf/ │ │ │ └── index.html │ │ ├── fileexporter(ispresented:documents:contenttype:oncompletion:)-vkdb/ │ │ │ └── index.html │ │ ├── fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:)/ │ │ │ └── index.html │ │ ├── fileimporter(ispresented:allowedcontenttypes:oncompletion:)/ │ │ │ └── index.html │ │ ├── filemover(ispresented:file:oncompletion:)/ │ │ │ └── index.html │ │ ├── filemover(ispresented:files:oncompletion:)/ │ │ │ └── index.html │ │ ├── fixedsize()/ │ │ │ └── index.html │ │ ├── fixedsize(horizontal:vertical:)/ │ │ │ └── index.html │ │ ├── flipsforrighttoleftlayoutdirection(_:)/ │ │ │ └── index.html │ │ ├── focusable(_:)/ │ │ │ └── index.html │ │ ├── focusable(_:onfocuschange:)/ │ │ │ └── index.html │ │ ├── focused(_:)/ │ │ │ └── index.html │ │ ├── focused(_:equals:)/ │ │ │ └── index.html │ │ ├── focusedscenevalue(_:_:)/ │ │ │ └── index.html │ │ ├── focusedvalue(_:_:)/ │ │ │ └── index.html │ │ ├── focusscope(_:)/ │ │ │ └── index.html │ │ ├── font(_:)/ │ │ │ └── index.html │ │ ├── foregroundcolor(_:)/ │ │ │ └── index.html │ │ ├── foregroundstyle(_:)/ │ │ │ └── index.html │ │ ├── foregroundstyle(_:_:)/ │ │ │ └── index.html │ │ ├── foregroundstyle(_:_:_:)/ │ │ │ └── index.html │ │ ├── frame()/ │ │ │ └── index.html │ │ ├── frame(minwidth:idealwidth:maxwidth:minheight:idealheight:maxheight:alignment:)/ │ │ │ └── index.html │ │ ├── frame(width:height:alignment:)/ │ │ │ └── index.html │ │ ├── gesture(_:including:)/ │ │ │ └── index.html │ │ ├── grayscale(_:)/ │ │ │ └── index.html │ │ ├── groupboxstyle(_:)/ │ │ │ └── index.html │ │ ├── handlesexternalevents(preferring:allowing:)/ │ │ │ └── index.html │ │ ├── headerprominence(_:)/ │ │ │ └── index.html │ │ ├── help(_:)-1f2w4/ │ │ │ └── index.html │ │ ├── help(_:)-1g6m4/ │ │ │ └── index.html │ │ ├── help(_:)-9mw1c/ │ │ │ └── index.html │ │ ├── hidden()/ │ │ │ └── index.html │ │ ├── highprioritygesture(_:including:)/ │ │ │ └── index.html │ │ ├── horizontalradiogrouplayout()/ │ │ │ └── index.html │ │ ├── huerotation(_:)/ │ │ │ └── index.html │ │ ├── id(_:)/ │ │ │ └── index.html │ │ ├── ignoressafearea(_:edges:)/ │ │ │ └── index.html │ │ ├── imagescale(_:)/ │ │ │ └── index.html │ │ ├── importsitemproviders(_:onimport:)/ │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(_:initialindex:content:)-70npt/ │ │ │ └── index.html │ │ ├── init(_:initialindex:content:)-7edjn/ │ │ │ └── index.html │ │ ├── interactivedismissdisabled(_:)/ │ │ │ └── index.html │ │ ├── itemprovider(_:)/ │ │ │ └── index.html │ │ ├── keyboardshortcut(_:)-2vfia/ │ │ │ └── index.html │ │ ├── keyboardshortcut(_:)-6bxt2/ │ │ │ └── index.html │ │ ├── keyboardshortcut(_:modifiers:)/ │ │ │ └── index.html │ │ ├── keyboardshortcut(_:modifiers:localization:)/ │ │ │ └── index.html │ │ ├── labelshidden()/ │ │ │ └── index.html │ │ ├── labelstyle(_:)/ │ │ │ └── index.html │ │ ├── layoutpriority(_:)/ │ │ │ └── index.html │ │ ├── linelimit(_:)/ │ │ │ └── index.html │ │ ├── linespacing(_:)/ │ │ │ └── index.html │ │ ├── listitemtint(_:)-9yojl/ │ │ │ └── index.html │ │ ├── listitemtint(_:)-w4ry/ │ │ │ └── index.html │ │ ├── listrowbackground(_:)/ │ │ │ └── index.html │ │ ├── listrowinsets(_:)/ │ │ │ └── index.html │ │ ├── liststyle(_:)/ │ │ │ └── index.html │ │ ├── luminancetoalpha()/ │ │ │ └── index.html │ │ ├── mask(_:)/ │ │ │ └── index.html │ │ ├── mask(alignment:_:)/ │ │ │ └── index.html │ │ ├── matchedgeometryeffect(id:in:properties:anchor:issource:)/ │ │ │ └── index.html │ │ ├── menubuttonstyle(_:)/ │ │ │ └── index.html │ │ ├── menuindicator(_:)/ │ │ │ └── index.html │ │ ├── menustyle(_:)/ │ │ │ └── index.html │ │ ├── minimumscalefactor(_:)/ │ │ │ └── index.html │ │ ├── modifier(_:)/ │ │ │ └── index.html │ │ ├── monospaceddigit()/ │ │ │ └── index.html │ │ ├── movedisabled(_:)/ │ │ │ └── index.html │ │ ├── multilinetextalignment(_:)/ │ │ │ └── index.html │ │ ├── navigationsubtitle(_:)-10991/ │ │ │ └── index.html │ │ ├── navigationsubtitle(_:)-7xq4j/ │ │ │ └── index.html │ │ ├── navigationsubtitle(_:)-8lv93/ │ │ │ └── index.html │ │ ├── navigationtitle(_:)-544cp/ │ │ │ └── index.html │ │ ├── navigationtitle(_:)-5xkgg/ │ │ │ └── index.html │ │ ├── navigationtitle(_:)-7209e/ │ │ │ └── index.html │ │ ├── navigationtitle(_:)-8mmxy/ │ │ │ └── index.html │ │ ├── navigationviewstyle(_:)/ │ │ │ └── index.html │ │ ├── offset(_:)/ │ │ │ └── index.html │ │ ├── offset(x:y:)/ │ │ │ └── index.html │ │ ├── onappear(perform:)/ │ │ │ └── index.html │ │ ├── oncarousel(_:)/ │ │ │ └── index.html │ │ ├── oncarouseltranslation(_:)/ │ │ │ └── index.html │ │ ├── onchange(of:perform:)/ │ │ │ └── index.html │ │ ├── oncommand(_:perform:)/ │ │ │ └── index.html │ │ ├── oncontinueuseractivity(_:perform:)/ │ │ │ └── index.html │ │ ├── oncopycommand(perform:)/ │ │ │ └── index.html │ │ ├── oncutcommand(perform:)/ │ │ │ └── index.html │ │ ├── ondeletecommand(perform:)/ │ │ │ └── index.html │ │ ├── ondisappear(perform:)/ │ │ │ └── index.html │ │ ├── ondrag(_:)/ │ │ │ └── index.html │ │ ├── ondrag(_:preview:)/ │ │ │ └── index.html │ │ ├── ondrop(of:delegate:)-2phlc/ │ │ │ └── index.html │ │ ├── ondrop(of:delegate:)-5rv2/ │ │ │ └── index.html │ │ ├── ondrop(of:istargeted:perform:)-1ne0m/ │ │ │ └── index.html │ │ ├── ondrop(of:istargeted:perform:)-2dbsa/ │ │ │ └── index.html │ │ ├── ondrop(of:istargeted:perform:)-3z0u6/ │ │ │ └── index.html │ │ ├── ondrop(of:istargeted:perform:)-7mvpm/ │ │ │ └── index.html │ │ ├── onexitcommand(perform:)/ │ │ │ └── index.html │ │ ├── onhover(perform:)/ │ │ │ └── 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 │ │ ├── onmovecommand(perform:)/ │ │ │ └── index.html │ │ ├── onopenurl(perform:)/ │ │ │ └── index.html │ │ ├── onpastecommand(of:perform:)-27ier/ │ │ │ └── index.html │ │ ├── onpastecommand(of:perform:)-2cj5d/ │ │ │ └── index.html │ │ ├── onpastecommand(of:validator:perform:)-18sg7/ │ │ │ └── index.html │ │ ├── onpastecommand(of:validator:perform:)-1ws2h/ │ │ │ └── index.html │ │ ├── onplaypausecommand(perform:)/ │ │ │ └── index.html │ │ ├── onpreferencechange(_:perform:)/ │ │ │ └── index.html │ │ ├── onreceive(_:perform:)/ │ │ │ └── index.html │ │ ├── onshuffle(_:)/ │ │ │ └── index.html │ │ ├── onshuffledeck(_:)/ │ │ │ └── index.html │ │ ├── onshuffledecktranslation(_:)/ │ │ │ └── index.html │ │ ├── onshuffletranslation(_:)/ │ │ │ └── index.html │ │ ├── onsubmit(of:_:)/ │ │ │ └── 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 │ │ ├── padding(_:)-254fg/ │ │ │ └── index.html │ │ ├── padding(_:)-h9m6/ │ │ │ └── index.html │ │ ├── padding(_:_:)/ │ │ │ └── index.html │ │ ├── pagecommand(value:in:step:)/ │ │ │ └── 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 │ │ ├── prefersdefaultfocus(_:in:)/ │ │ │ └── index.html │ │ ├── presentedwindowstyle(_:)/ │ │ │ └── index.html │ │ ├── presentedwindowtoolbarstyle(_:)/ │ │ │ └── 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 │ │ ├── rotation3deffect(_:axis:anchor:anchorz:perspective:)/ │ │ │ └── index.html │ │ ├── rotationeffect(_:anchor:)/ │ │ │ └── index.html │ │ ├── safeareainset(edge:alignment:spacing:content:)-5p4xh/ │ │ │ └── index.html │ │ ├── safeareainset(edge:alignment:spacing:content:)-8nq8e/ │ │ │ └── index.html │ │ ├── saturation(_:)/ │ │ │ └── index.html │ │ ├── scaledtofill()/ │ │ │ └── index.html │ │ ├── scaledtofit()/ │ │ │ └── index.html │ │ ├── scaleeffect(_:anchor:)-7oq71/ │ │ │ └── index.html │ │ ├── scaleeffect(_:anchor:)-9chpl/ │ │ │ └── index.html │ │ ├── scaleeffect(x:y:anchor:)/ │ │ │ └── index.html │ │ ├── scenepadding(_:)/ │ │ │ └── index.html │ │ ├── searchable(text:placement:prompt:)-31g2u/ │ │ │ └── index.html │ │ ├── searchable(text:placement:prompt:)-5dpdp/ │ │ │ └── index.html │ │ ├── searchable(text:placement:prompt:)-9859/ │ │ │ └── index.html │ │ ├── searchable(text:placement:prompt:suggestions:)-2uz54/ │ │ │ └── index.html │ │ ├── searchable(text:placement:prompt:suggestions:)-7bvn6/ │ │ │ └── index.html │ │ ├── searchable(text:placement:prompt:suggestions:)-8bmqj/ │ │ │ └── index.html │ │ ├── searchcompletion(_:)/ │ │ │ └── index.html │ │ ├── shadow(color:radius:x:y:)/ │ │ │ └── index.html │ │ ├── sheet(ispresented:ondismiss:content:)/ │ │ │ └── index.html │ │ ├── sheet(item:ondismiss:content:)/ │ │ │ └── index.html │ │ ├── shuffleanimation(_:)/ │ │ │ └── index.html │ │ ├── shuffledeckanimation(_:)/ │ │ │ └── index.html │ │ ├── shuffledeckdisabled(_:)/ │ │ │ └── index.html │ │ ├── shuffledeckscale(_:)/ │ │ │ └── index.html │ │ ├── shuffledeckstyle(_:)/ │ │ │ └── index.html │ │ ├── shuffledecktrigger(on:)/ │ │ │ └── index.html │ │ ├── shuffledisabled(_:)/ │ │ │ └── index.html │ │ ├── shuffleoffset(_:)/ │ │ │ └── index.html │ │ ├── shufflepadding(_:)/ │ │ │ └── index.html │ │ ├── shufflescale(_:)/ │ │ │ └── index.html │ │ ├── shufflestyle(_:)/ │ │ │ └── index.html │ │ ├── shuffletrigger(on:)/ │ │ │ └── index.html │ │ ├── simultaneousgesture(_:including:)/ │ │ │ └── index.html │ │ ├── speechadjustedpitch(_:)/ │ │ │ └── index.html │ │ ├── speechalwaysincludespunctuation(_:)/ │ │ │ └── index.html │ │ ├── speechannouncementsqueued(_:)/ │ │ │ └── index.html │ │ ├── speechspellsoutcharacters(_:)/ │ │ │ └── index.html │ │ ├── submitlabel(_:)/ │ │ │ └── index.html │ │ ├── submitscope(_:)/ │ │ │ └── index.html │ │ ├── swipeactions(edge:allowsfullswipe:content:)/ │ │ │ └── index.html │ │ ├── symbolrenderingmode(_:)/ │ │ │ └── index.html │ │ ├── symbolvariant(_:)/ │ │ │ └── index.html │ │ ├── tabitem(_:)/ │ │ │ └── index.html │ │ ├── tablestyle(_:)/ │ │ │ └── index.html │ │ ├── tabviewstyle(_:)/ │ │ │ └── index.html │ │ ├── tag(_:)/ │ │ │ └── index.html │ │ ├── task(id:priority:_:)/ │ │ │ └── index.html │ │ ├── task(priority:_:)/ │ │ │ └── index.html │ │ ├── textcase(_:)/ │ │ │ └── index.html │ │ ├── textcontenttype(_:)/ │ │ │ └── index.html │ │ ├── textfieldstyle(_:)/ │ │ │ └── index.html │ │ ├── textselection(_:)/ │ │ │ └── index.html │ │ ├── tint(_:)/ │ │ │ └── index.html │ │ ├── togglestyle(_:)/ │ │ │ └── index.html │ │ ├── toolbar(content:)-6zmlc/ │ │ │ └── index.html │ │ ├── toolbar(content:)-7j09e/ │ │ │ └── index.html │ │ ├── toolbar(id:content:)/ │ │ │ └── index.html │ │ ├── touchbar(_:)/ │ │ │ └── index.html │ │ ├── touchbar(content:)/ │ │ │ └── index.html │ │ ├── touchbarcustomizationlabel(_:)/ │ │ │ └── index.html │ │ ├── touchbaritempresence(_:)/ │ │ │ └── index.html │ │ ├── touchbaritemprincipal(_:)/ │ │ │ └── index.html │ │ ├── transaction(_:)/ │ │ │ └── index.html │ │ ├── transformanchorpreference(key:value:transform:)/ │ │ │ └── index.html │ │ ├── transformeffect(_:)/ │ │ │ └── index.html │ │ ├── transformenvironment(_:transform:)/ │ │ │ └── index.html │ │ ├── transformpreference(_:_:)/ │ │ │ └── index.html │ │ ├── transition(_:)/ │ │ │ └── index.html │ │ ├── truncationmode(_:)/ │ │ │ └── index.html │ │ ├── unredacted()/ │ │ │ └── index.html │ │ ├── useractivity(_:element:_:)/ │ │ │ └── index.html │ │ ├── useractivity(_:isactive:_:)/ │ │ │ └── index.html │ │ ├── view-implementations/ │ │ │ └── index.html │ │ └── zindex(_:)/ │ │ └── index.html │ ├── carouselstyle/ │ │ ├── !=(_:_:)/ │ │ │ └── index.html │ │ ├── equatable-implementations/ │ │ │ └── index.html │ │ ├── finitescroll/ │ │ │ └── index.html │ │ ├── index.html │ │ └── infinitescroll/ │ │ └── index.html │ ├── index.html │ ├── shuffleanimation/ │ │ ├── !=(_:_:)/ │ │ │ └── index.html │ │ ├── easein/ │ │ │ └── index.html │ │ ├── easeinout/ │ │ │ └── index.html │ │ ├── easeout/ │ │ │ └── index.html │ │ ├── equatable-implementations/ │ │ │ └── index.html │ │ ├── index.html │ │ └── linear/ │ │ └── index.html │ ├── shufflecontext/ │ │ ├── direction/ │ │ │ └── index.html │ │ ├── index/ │ │ │ └── index.html │ │ ├── index.html │ │ └── previousindex/ │ │ └── index.html │ ├── shuffledeck/ │ │ ├── accentcolor(_:)/ │ │ │ └── index.html │ │ ├── accessibility(activationpoint:)-5yxv/ │ │ │ └── index.html │ │ ├── accessibility(activationpoint:)-6f80/ │ │ │ └── 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:_:)-5vajk/ │ │ │ └── index.html │ │ ├── accessibilityaction(named:_:)-7cvr0/ │ │ │ └── index.html │ │ ├── accessibilityaction(named:_:)-7d1bz/ │ │ │ └── index.html │ │ ├── accessibilityactivationpoint(_:)-4i64i/ │ │ │ └── index.html │ │ ├── accessibilityactivationpoint(_:)-8rijn/ │ │ │ └── index.html │ │ ├── accessibilityaddtraits(_:)/ │ │ │ └── index.html │ │ ├── accessibilityadjustableaction(_:)/ │ │ │ └── index.html │ │ ├── accessibilitychartdescriptor(_:)/ │ │ │ └── index.html │ │ ├── accessibilitychildren(children:)/ │ │ │ └── index.html │ │ ├── accessibilitycustomcontent(_:_:importance:)-1dnrk/ │ │ │ └── index.html │ │ ├── accessibilitycustomcontent(_:_:importance:)-1ucuw/ │ │ │ └── index.html │ │ ├── accessibilitycustomcontent(_:_:importance:)-2nazk/ │ │ │ └── index.html │ │ ├── accessibilitycustomcontent(_:_:importance:)-3pllm/ │ │ │ └── index.html │ │ ├── accessibilitycustomcontent(_:_:importance:)-3pod7/ │ │ │ └── index.html │ │ ├── accessibilitycustomcontent(_:_:importance:)-4xdb3/ │ │ │ └── index.html │ │ ├── accessibilitycustomcontent(_:_:importance:)-5vxjo/ │ │ │ └── index.html │ │ ├── accessibilitycustomcontent(_:_:importance:)-qwm7/ │ │ │ └── index.html │ │ ├── accessibilityelement(children:)/ │ │ │ └── index.html │ │ ├── accessibilityfocused(_:)/ │ │ │ └── index.html │ │ ├── accessibilityfocused(_:equals:)/ │ │ │ └── index.html │ │ ├── accessibilityheading(_:)/ │ │ │ └── index.html │ │ ├── accessibilityhidden(_:)/ │ │ │ └── index.html │ │ ├── accessibilityhint(_:)-1rrl0/ │ │ │ └── index.html │ │ ├── accessibilityhint(_:)-5nt5z/ │ │ │ └── index.html │ │ ├── accessibilityhint(_:)-v4ao/ │ │ │ └── index.html │ │ ├── accessibilityidentifier(_:)/ │ │ │ └── index.html │ │ ├── accessibilityignoresinvertcolors(_:)/ │ │ │ └── index.html │ │ ├── accessibilityinputlabels(_:)-3x55a/ │ │ │ └── index.html │ │ ├── accessibilityinputlabels(_:)-6n0d7/ │ │ │ └── index.html │ │ ├── accessibilityinputlabels(_:)-8jm4t/ │ │ │ └── index.html │ │ ├── accessibilitylabel(_:)-3ly3t/ │ │ │ └── index.html │ │ ├── accessibilitylabel(_:)-4h91y/ │ │ │ └── index.html │ │ ├── accessibilitylabel(_:)-6a6no/ │ │ │ └── index.html │ │ ├── accessibilitylabeledpair(role:id:in:)/ │ │ │ └── index.html │ │ ├── accessibilitylinkedgroup(id:in:)/ │ │ │ └── index.html │ │ ├── accessibilityremovetraits(_:)/ │ │ │ └── index.html │ │ ├── accessibilityrepresentation(representation:)/ │ │ │ └── index.html │ │ ├── accessibilityrespondstouserinteraction(_:)/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:entries:)-1orax/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:entries:)-2p5bh/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:entries:)-5mxjh/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:entries:)-7dolw/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-10oqf/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-25d98/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-51dnw/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-6jn71/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:entries:entrylabel:)-3f3j9/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:entries:entrylabel:)-3lh2p/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:entries:entrylabel:)-6wf02/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:entries:entrylabel:)-7t24j/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:textranges:)-6nczq/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:textranges:)-8d4es/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:textranges:)-8l6zm/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:textranges:)-964n8/ │ │ │ └── index.html │ │ ├── accessibilityrotorentry(id:in:)/ │ │ │ └── index.html │ │ ├── accessibilityscrollaction(_:)/ │ │ │ └── index.html │ │ ├── accessibilityshowslargecontentviewer()/ │ │ │ └── index.html │ │ ├── accessibilityshowslargecontentviewer(_:)/ │ │ │ └── index.html │ │ ├── accessibilitysortpriority(_:)/ │ │ │ └── index.html │ │ ├── accessibilitytextcontenttype(_:)/ │ │ │ └── index.html │ │ ├── accessibilityvalue(_:)-3kff4/ │ │ │ └── index.html │ │ ├── accessibilityvalue(_:)-7dd6l/ │ │ │ └── index.html │ │ ├── accessibilityvalue(_:)-7tnqf/ │ │ │ └── index.html │ │ ├── alert(_:ispresented:actions:)-2i24c/ │ │ │ └── index.html │ │ ├── alert(_:ispresented:actions:)-6i5wg/ │ │ │ └── index.html │ │ ├── alert(_:ispresented:actions:)-6mdoc/ │ │ │ └── index.html │ │ ├── alert(_:ispresented:actions:message:)-5j65x/ │ │ │ └── index.html │ │ ├── alert(_:ispresented:actions:message:)-6iohl/ │ │ │ └── index.html │ │ ├── alert(_:ispresented:actions:message:)-8x9o0/ │ │ │ └── index.html │ │ ├── alert(_:ispresented:presenting:actions:)-43fim/ │ │ │ └── index.html │ │ ├── alert(_:ispresented:presenting:actions:)-6dwv5/ │ │ │ └── index.html │ │ ├── alert(_:ispresented:presenting:actions:)-77clm/ │ │ │ └── index.html │ │ ├── alert(_:ispresented:presenting:actions:message:)-7p8yz/ │ │ │ └── index.html │ │ ├── alert(_:ispresented:presenting:actions:message:)-7ptxx/ │ │ │ └── index.html │ │ ├── alert(_:ispresented:presenting:actions:message:)-88es2/ │ │ │ └── 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:)-5dc06/ │ │ │ └── index.html │ │ ├── alignmentguide(_:computevalue:)-98bnf/ │ │ │ └── index.html │ │ ├── allowshittesting(_:)/ │ │ │ └── index.html │ │ ├── allowstightening(_:)/ │ │ │ └── index.html │ │ ├── anchorpreference(key:value:transform:)/ │ │ │ └── index.html │ │ ├── animation(_:)/ │ │ │ └── index.html │ │ ├── animation(_:value:)/ │ │ │ └── index.html │ │ ├── aspectratio(_:contentmode:)-7qpsf/ │ │ │ └── index.html │ │ ├── aspectratio(_:contentmode:)-98csp/ │ │ │ └── index.html │ │ ├── background(_:alignment:)/ │ │ │ └── index.html │ │ ├── background(_:ignoressafeareaedges:)/ │ │ │ └── index.html │ │ ├── background(_:in:fillstyle:)-16mk7/ │ │ │ └── index.html │ │ ├── background(_:in:fillstyle:)-3xtjy/ │ │ │ └── index.html │ │ ├── background(alignment:content:)/ │ │ │ └── index.html │ │ ├── background(ignoressafeareaedges:)/ │ │ │ └── index.html │ │ ├── background(in:fillstyle:)-22zkr/ │ │ │ └── index.html │ │ ├── background(in:fillstyle:)-pkki/ │ │ │ └── index.html │ │ ├── backgroundpreferencevalue(_:_:)/ │ │ │ └── index.html │ │ ├── badge(_:)-23vvh/ │ │ │ └── index.html │ │ ├── badge(_:)-3b7a5/ │ │ │ └── index.html │ │ ├── badge(_:)-4eyh0/ │ │ │ └── index.html │ │ ├── badge(_:)-5yfrj/ │ │ │ └── index.html │ │ ├── blendmode(_:)/ │ │ │ └── index.html │ │ ├── blur(radius:opaque:)/ │ │ │ └── index.html │ │ ├── body/ │ │ │ └── index.html │ │ ├── border(_:width:)/ │ │ │ └── index.html │ │ ├── brightness(_:)/ │ │ │ └── index.html │ │ ├── buttonbordershape(_:)/ │ │ │ └── index.html │ │ ├── buttonstyle(_:)-1hkio/ │ │ │ └── index.html │ │ ├── buttonstyle(_:)-1mobg/ │ │ │ └── index.html │ │ ├── carouselanimation(_:)/ │ │ │ └── index.html │ │ ├── carouseldisabled(_:)/ │ │ │ └── index.html │ │ ├── carouselpadding(_:)/ │ │ │ └── index.html │ │ ├── carouselscale(_:)/ │ │ │ └── index.html │ │ ├── carouselspacing(_:)/ │ │ │ └── index.html │ │ ├── carouselstyle(_:)/ │ │ │ └── index.html │ │ ├── carouseltrigger(on:)/ │ │ │ └── index.html │ │ ├── clipped(antialiased:)/ │ │ │ └── index.html │ │ ├── clipshape(_:style:)/ │ │ │ └── index.html │ │ ├── colorinvert()/ │ │ │ └── index.html │ │ ├── colormultiply(_:)/ │ │ │ └── index.html │ │ ├── colorscheme(_:)/ │ │ │ └── index.html │ │ ├── compositinggroup()/ │ │ │ └── index.html │ │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-7c2i9/ │ │ │ └── index.html │ │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-7p1mg/ │ │ │ └── index.html │ │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-9t8f5/ │ │ │ └── index.html │ │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-592a8/ │ │ │ └── index.html │ │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-6sq5i/ │ │ │ └── index.html │ │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-8ffij/ │ │ │ └── index.html │ │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-455gp/ │ │ │ └── index.html │ │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-7pvn4/ │ │ │ └── index.html │ │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-8fhv/ │ │ │ └── index.html │ │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-4bg57/ │ │ │ └── index.html │ │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-4pxpc/ │ │ │ └── index.html │ │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-50r8e/ │ │ │ └── index.html │ │ ├── containershape(_:)/ │ │ │ └── index.html │ │ ├── contentshape(_:_:eofill:)/ │ │ │ └── index.html │ │ ├── contentshape(_:eofill:)/ │ │ │ └── index.html │ │ ├── contextmenu(_:)/ │ │ │ └── index.html │ │ ├── contextmenu(menuitems:)/ │ │ │ └── index.html │ │ ├── contrast(_:)/ │ │ │ └── index.html │ │ ├── controlgroupstyle(_:)/ │ │ │ └── index.html │ │ ├── controlsize(_:)/ │ │ │ └── index.html │ │ ├── coordinatespace(name:)/ │ │ │ └── index.html │ │ ├── cornerradius(_:antialiased:)/ │ │ │ └── index.html │ │ ├── datepickerstyle(_:)/ │ │ │ └── index.html │ │ ├── defaultappstorage(_:)/ │ │ │ └── index.html │ │ ├── deletedisabled(_:)/ │ │ │ └── index.html │ │ ├── disableautocorrection(_:)/ │ │ │ └── index.html │ │ ├── disabled(_:)/ │ │ │ └── index.html │ │ ├── drawinggroup(opaque:colormode:)/ │ │ │ └── index.html │ │ ├── dynamictypesize(_:)/ │ │ │ └── index.html │ │ ├── edgesignoringsafearea(_:)/ │ │ │ └── index.html │ │ ├── environment(_:_:)/ │ │ │ └── index.html │ │ ├── environmentobject(_:)/ │ │ │ └── index.html │ │ ├── exportsitemproviders(_:onexport:)/ │ │ │ └── index.html │ │ ├── exportsitemproviders(_:onexport:onedit:)/ │ │ │ └── index.html │ │ ├── fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-54p9i/ │ │ │ └── index.html │ │ ├── fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-z1af/ │ │ │ └── index.html │ │ ├── fileexporter(ispresented:documents:contenttype:oncompletion:)-4ixib/ │ │ │ └── index.html │ │ ├── fileexporter(ispresented:documents:contenttype:oncompletion:)-72o0w/ │ │ │ └── index.html │ │ ├── fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:)/ │ │ │ └── index.html │ │ ├── fileimporter(ispresented:allowedcontenttypes:oncompletion:)/ │ │ │ └── index.html │ │ ├── filemover(ispresented:file:oncompletion:)/ │ │ │ └── index.html │ │ ├── filemover(ispresented:files:oncompletion:)/ │ │ │ └── index.html │ │ ├── fixedsize()/ │ │ │ └── index.html │ │ ├── fixedsize(horizontal:vertical:)/ │ │ │ └── index.html │ │ ├── flipsforrighttoleftlayoutdirection(_:)/ │ │ │ └── index.html │ │ ├── focusable(_:)/ │ │ │ └── index.html │ │ ├── focusable(_:onfocuschange:)/ │ │ │ └── index.html │ │ ├── focused(_:)/ │ │ │ └── index.html │ │ ├── focused(_:equals:)/ │ │ │ └── index.html │ │ ├── focusedscenevalue(_:_:)/ │ │ │ └── index.html │ │ ├── focusedvalue(_:_:)/ │ │ │ └── index.html │ │ ├── focusscope(_:)/ │ │ │ └── index.html │ │ ├── font(_:)/ │ │ │ └── index.html │ │ ├── foregroundcolor(_:)/ │ │ │ └── index.html │ │ ├── foregroundstyle(_:)/ │ │ │ └── index.html │ │ ├── foregroundstyle(_:_:)/ │ │ │ └── index.html │ │ ├── foregroundstyle(_:_:_:)/ │ │ │ └── index.html │ │ ├── frame()/ │ │ │ └── index.html │ │ ├── frame(minwidth:idealwidth:maxwidth:minheight:idealheight:maxheight:alignment:)/ │ │ │ └── index.html │ │ ├── frame(width:height:alignment:)/ │ │ │ └── index.html │ │ ├── gesture(_:including:)/ │ │ │ └── index.html │ │ ├── grayscale(_:)/ │ │ │ └── index.html │ │ ├── groupboxstyle(_:)/ │ │ │ └── index.html │ │ ├── handlesexternalevents(preferring:allowing:)/ │ │ │ └── index.html │ │ ├── headerprominence(_:)/ │ │ │ └── index.html │ │ ├── help(_:)-4gfc1/ │ │ │ └── index.html │ │ ├── help(_:)-57kg7/ │ │ │ └── index.html │ │ ├── help(_:)-5c7gg/ │ │ │ └── index.html │ │ ├── hidden()/ │ │ │ └── index.html │ │ ├── highprioritygesture(_:including:)/ │ │ │ └── index.html │ │ ├── horizontalradiogrouplayout()/ │ │ │ └── index.html │ │ ├── huerotation(_:)/ │ │ │ └── index.html │ │ ├── id(_:)/ │ │ │ └── index.html │ │ ├── ignoressafearea(_:edges:)/ │ │ │ └── index.html │ │ ├── imagescale(_:)/ │ │ │ └── index.html │ │ ├── importsitemproviders(_:onimport:)/ │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(_:initialindex:content:)-6ou47/ │ │ │ └── index.html │ │ ├── init(_:initialindex:content:)-9osfg/ │ │ │ └── index.html │ │ ├── interactivedismissdisabled(_:)/ │ │ │ └── index.html │ │ ├── itemprovider(_:)/ │ │ │ └── index.html │ │ ├── keyboardshortcut(_:)-8kg9p/ │ │ │ └── index.html │ │ ├── keyboardshortcut(_:)-92las/ │ │ │ └── index.html │ │ ├── keyboardshortcut(_:modifiers:)/ │ │ │ └── index.html │ │ ├── keyboardshortcut(_:modifiers:localization:)/ │ │ │ └── index.html │ │ ├── labelshidden()/ │ │ │ └── index.html │ │ ├── labelstyle(_:)/ │ │ │ └── index.html │ │ ├── layoutpriority(_:)/ │ │ │ └── index.html │ │ ├── linelimit(_:)/ │ │ │ └── index.html │ │ ├── linespacing(_:)/ │ │ │ └── index.html │ │ ├── listitemtint(_:)-4okc6/ │ │ │ └── index.html │ │ ├── listitemtint(_:)-8uys6/ │ │ │ └── index.html │ │ ├── listrowbackground(_:)/ │ │ │ └── index.html │ │ ├── listrowinsets(_:)/ │ │ │ └── index.html │ │ ├── liststyle(_:)/ │ │ │ └── index.html │ │ ├── luminancetoalpha()/ │ │ │ └── index.html │ │ ├── mask(_:)/ │ │ │ └── index.html │ │ ├── mask(alignment:_:)/ │ │ │ └── index.html │ │ ├── matchedgeometryeffect(id:in:properties:anchor:issource:)/ │ │ │ └── index.html │ │ ├── menubuttonstyle(_:)/ │ │ │ └── index.html │ │ ├── menuindicator(_:)/ │ │ │ └── index.html │ │ ├── menustyle(_:)/ │ │ │ └── index.html │ │ ├── minimumscalefactor(_:)/ │ │ │ └── index.html │ │ ├── modifier(_:)/ │ │ │ └── index.html │ │ ├── monospaceddigit()/ │ │ │ └── index.html │ │ ├── movedisabled(_:)/ │ │ │ └── index.html │ │ ├── multilinetextalignment(_:)/ │ │ │ └── index.html │ │ ├── navigationsubtitle(_:)-4xcr1/ │ │ │ └── index.html │ │ ├── navigationsubtitle(_:)-62wq4/ │ │ │ └── index.html │ │ ├── navigationsubtitle(_:)-89wf8/ │ │ │ └── index.html │ │ ├── navigationtitle(_:)-15ycd/ │ │ │ └── index.html │ │ ├── navigationtitle(_:)-3gz4j/ │ │ │ └── index.html │ │ ├── navigationtitle(_:)-6t67o/ │ │ │ └── index.html │ │ ├── navigationtitle(_:)-8moj6/ │ │ │ └── index.html │ │ ├── navigationviewstyle(_:)/ │ │ │ └── index.html │ │ ├── offset(_:)/ │ │ │ └── index.html │ │ ├── offset(x:y:)/ │ │ │ └── index.html │ │ ├── onappear(perform:)/ │ │ │ └── index.html │ │ ├── oncarousel(_:)/ │ │ │ └── index.html │ │ ├── oncarouseltranslation(_:)/ │ │ │ └── index.html │ │ ├── onchange(of:perform:)/ │ │ │ └── index.html │ │ ├── oncommand(_:perform:)/ │ │ │ └── index.html │ │ ├── oncontinueuseractivity(_:perform:)/ │ │ │ └── index.html │ │ ├── oncopycommand(perform:)/ │ │ │ └── index.html │ │ ├── oncutcommand(perform:)/ │ │ │ └── index.html │ │ ├── ondeletecommand(perform:)/ │ │ │ └── index.html │ │ ├── ondisappear(perform:)/ │ │ │ └── index.html │ │ ├── ondrag(_:)/ │ │ │ └── index.html │ │ ├── ondrag(_:preview:)/ │ │ │ └── index.html │ │ ├── ondrop(of:delegate:)-55jbd/ │ │ │ └── index.html │ │ ├── ondrop(of:delegate:)-9xy3o/ │ │ │ └── index.html │ │ ├── ondrop(of:istargeted:perform:)-2wosm/ │ │ │ └── index.html │ │ ├── ondrop(of:istargeted:perform:)-4zd72/ │ │ │ └── index.html │ │ ├── ondrop(of:istargeted:perform:)-6o6wo/ │ │ │ └── index.html │ │ ├── ondrop(of:istargeted:perform:)-btgb/ │ │ │ └── index.html │ │ ├── onexitcommand(perform:)/ │ │ │ └── index.html │ │ ├── onhover(perform:)/ │ │ │ └── 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 │ │ ├── onmovecommand(perform:)/ │ │ │ └── index.html │ │ ├── onopenurl(perform:)/ │ │ │ └── index.html │ │ ├── onpastecommand(of:perform:)-3phpt/ │ │ │ └── index.html │ │ ├── onpastecommand(of:perform:)-7nzf4/ │ │ │ └── index.html │ │ ├── onpastecommand(of:validator:perform:)-5h2lv/ │ │ │ └── index.html │ │ ├── onpastecommand(of:validator:perform:)-7k6qm/ │ │ │ └── index.html │ │ ├── onplaypausecommand(perform:)/ │ │ │ └── index.html │ │ ├── onpreferencechange(_:perform:)/ │ │ │ └── index.html │ │ ├── onreceive(_:perform:)/ │ │ │ └── index.html │ │ ├── onshuffle(_:)/ │ │ │ └── index.html │ │ ├── onshuffledeck(_:)/ │ │ │ └── index.html │ │ ├── onshuffledecktranslation(_:)/ │ │ │ └── index.html │ │ ├── onshuffletranslation(_:)/ │ │ │ └── index.html │ │ ├── onsubmit(of:_:)/ │ │ │ └── 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 │ │ ├── padding(_:)-5f3wf/ │ │ │ └── index.html │ │ ├── padding(_:)-7cp9q/ │ │ │ └── index.html │ │ ├── padding(_:_:)/ │ │ │ └── index.html │ │ ├── pagecommand(value:in:step:)/ │ │ │ └── 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 │ │ ├── prefersdefaultfocus(_:in:)/ │ │ │ └── index.html │ │ ├── presentedwindowstyle(_:)/ │ │ │ └── index.html │ │ ├── presentedwindowtoolbarstyle(_:)/ │ │ │ └── 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 │ │ ├── rotation3deffect(_:axis:anchor:anchorz:perspective:)/ │ │ │ └── index.html │ │ ├── rotationeffect(_:anchor:)/ │ │ │ └── index.html │ │ ├── safeareainset(edge:alignment:spacing:content:)-4gojk/ │ │ │ └── index.html │ │ ├── safeareainset(edge:alignment:spacing:content:)-9bx6p/ │ │ │ └── index.html │ │ ├── saturation(_:)/ │ │ │ └── index.html │ │ ├── scaledtofill()/ │ │ │ └── index.html │ │ ├── scaledtofit()/ │ │ │ └── index.html │ │ ├── scaleeffect(_:anchor:)-4byje/ │ │ │ └── index.html │ │ ├── scaleeffect(_:anchor:)-6bduh/ │ │ │ └── index.html │ │ ├── scaleeffect(x:y:anchor:)/ │ │ │ └── index.html │ │ ├── scenepadding(_:)/ │ │ │ └── index.html │ │ ├── searchable(text:placement:prompt:)-2i9jl/ │ │ │ └── index.html │ │ ├── searchable(text:placement:prompt:)-50j7i/ │ │ │ └── index.html │ │ ├── searchable(text:placement:prompt:)-75a6t/ │ │ │ └── index.html │ │ ├── searchable(text:placement:prompt:suggestions:)-5bsg8/ │ │ │ └── index.html │ │ ├── searchable(text:placement:prompt:suggestions:)-5ib9a/ │ │ │ └── index.html │ │ ├── searchable(text:placement:prompt:suggestions:)-8fyqc/ │ │ │ └── index.html │ │ ├── searchcompletion(_:)/ │ │ │ └── index.html │ │ ├── shadow(color:radius:x:y:)/ │ │ │ └── index.html │ │ ├── sheet(ispresented:ondismiss:content:)/ │ │ │ └── index.html │ │ ├── sheet(item:ondismiss:content:)/ │ │ │ └── index.html │ │ ├── shuffleanimation(_:)/ │ │ │ └── index.html │ │ ├── shuffledeckanimation(_:)/ │ │ │ └── index.html │ │ ├── shuffledeckdisabled(_:)/ │ │ │ └── index.html │ │ ├── shuffledeckscale(_:)/ │ │ │ └── index.html │ │ ├── shuffledeckstyle(_:)/ │ │ │ └── index.html │ │ ├── shuffledecktrigger(on:)/ │ │ │ └── index.html │ │ ├── shuffledisabled(_:)/ │ │ │ └── index.html │ │ ├── shuffleoffset(_:)/ │ │ │ └── index.html │ │ ├── shufflepadding(_:)/ │ │ │ └── index.html │ │ ├── shufflescale(_:)/ │ │ │ └── index.html │ │ ├── shufflestyle(_:)/ │ │ │ └── index.html │ │ ├── shuffletrigger(on:)/ │ │ │ └── index.html │ │ ├── simultaneousgesture(_:including:)/ │ │ │ └── index.html │ │ ├── speechadjustedpitch(_:)/ │ │ │ └── index.html │ │ ├── speechalwaysincludespunctuation(_:)/ │ │ │ └── index.html │ │ ├── speechannouncementsqueued(_:)/ │ │ │ └── index.html │ │ ├── speechspellsoutcharacters(_:)/ │ │ │ └── index.html │ │ ├── submitlabel(_:)/ │ │ │ └── index.html │ │ ├── submitscope(_:)/ │ │ │ └── index.html │ │ ├── swipeactions(edge:allowsfullswipe:content:)/ │ │ │ └── index.html │ │ ├── symbolrenderingmode(_:)/ │ │ │ └── index.html │ │ ├── symbolvariant(_:)/ │ │ │ └── index.html │ │ ├── tabitem(_:)/ │ │ │ └── index.html │ │ ├── tablestyle(_:)/ │ │ │ └── index.html │ │ ├── tabviewstyle(_:)/ │ │ │ └── index.html │ │ ├── tag(_:)/ │ │ │ └── index.html │ │ ├── task(id:priority:_:)/ │ │ │ └── index.html │ │ ├── task(priority:_:)/ │ │ │ └── index.html │ │ ├── textcase(_:)/ │ │ │ └── index.html │ │ ├── textcontenttype(_:)/ │ │ │ └── index.html │ │ ├── textfieldstyle(_:)/ │ │ │ └── index.html │ │ ├── textselection(_:)/ │ │ │ └── index.html │ │ ├── tint(_:)/ │ │ │ └── index.html │ │ ├── togglestyle(_:)/ │ │ │ └── index.html │ │ ├── toolbar(content:)-2k0pt/ │ │ │ └── index.html │ │ ├── toolbar(content:)-4sm5t/ │ │ │ └── index.html │ │ ├── toolbar(id:content:)/ │ │ │ └── index.html │ │ ├── touchbar(_:)/ │ │ │ └── index.html │ │ ├── touchbar(content:)/ │ │ │ └── index.html │ │ ├── touchbarcustomizationlabel(_:)/ │ │ │ └── index.html │ │ ├── touchbaritempresence(_:)/ │ │ │ └── index.html │ │ ├── touchbaritemprincipal(_:)/ │ │ │ └── index.html │ │ ├── transaction(_:)/ │ │ │ └── index.html │ │ ├── transformanchorpreference(key:value:transform:)/ │ │ │ └── index.html │ │ ├── transformeffect(_:)/ │ │ │ └── index.html │ │ ├── transformenvironment(_:transform:)/ │ │ │ └── index.html │ │ ├── transformpreference(_:_:)/ │ │ │ └── index.html │ │ ├── transition(_:)/ │ │ │ └── index.html │ │ ├── truncationmode(_:)/ │ │ │ └── index.html │ │ ├── unredacted()/ │ │ │ └── index.html │ │ ├── useractivity(_:element:_:)/ │ │ │ └── index.html │ │ ├── useractivity(_:isactive:_:)/ │ │ │ └── index.html │ │ ├── view-implementations/ │ │ │ └── index.html │ │ └── zindex(_:)/ │ │ └── index.html │ ├── shuffledeckanimation/ │ │ ├── !=(_:_:)/ │ │ │ └── index.html │ │ ├── easein/ │ │ │ └── index.html │ │ ├── easeinout/ │ │ │ └── index.html │ │ ├── easeout/ │ │ │ └── index.html │ │ ├── equatable-implementations/ │ │ │ └── index.html │ │ ├── index.html │ │ └── linear/ │ │ └── index.html │ ├── shuffledeckcontext/ │ │ ├── direction/ │ │ │ └── index.html │ │ ├── index/ │ │ │ └── index.html │ │ ├── index.html │ │ └── previousindex/ │ │ └── index.html │ ├── shuffledeckdirection/ │ │ ├── !=(_:_:)/ │ │ │ └── index.html │ │ ├── equatable-implementations/ │ │ │ └── index.html │ │ ├── index.html │ │ ├── left/ │ │ │ └── index.html │ │ └── right/ │ │ └── index.html │ ├── shuffledeckstyle/ │ │ ├── !=(_:_:)/ │ │ │ └── index.html │ │ ├── equatable-implementations/ │ │ │ └── index.html │ │ ├── finiteshuffle/ │ │ │ └── index.html │ │ ├── index.html │ │ └── infiniteshuffle/ │ │ └── index.html │ ├── shuffledirection/ │ │ ├── !=(_:_:)/ │ │ │ └── index.html │ │ ├── equatable-implementations/ │ │ │ └── index.html │ │ ├── index.html │ │ ├── left/ │ │ │ └── index.html │ │ └── right/ │ │ └── index.html │ ├── shufflestack/ │ │ ├── accentcolor(_:)/ │ │ │ └── index.html │ │ ├── accessibility(activationpoint:)-1nikr/ │ │ │ └── index.html │ │ ├── accessibility(activationpoint:)-9o1ut/ │ │ │ └── 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:_:)-5nf29/ │ │ │ └── index.html │ │ ├── accessibilityaction(named:_:)-7rxae/ │ │ │ └── index.html │ │ ├── accessibilityaction(named:_:)-7tk0c/ │ │ │ └── index.html │ │ ├── accessibilityactivationpoint(_:)-57vfb/ │ │ │ └── index.html │ │ ├── accessibilityactivationpoint(_:)-9osvr/ │ │ │ └── index.html │ │ ├── accessibilityaddtraits(_:)/ │ │ │ └── index.html │ │ ├── accessibilityadjustableaction(_:)/ │ │ │ └── index.html │ │ ├── accessibilitychartdescriptor(_:)/ │ │ │ └── index.html │ │ ├── accessibilitychildren(children:)/ │ │ │ └── index.html │ │ ├── accessibilitycustomcontent(_:_:importance:)-1gi9v/ │ │ │ └── index.html │ │ ├── accessibilitycustomcontent(_:_:importance:)-375xz/ │ │ │ └── index.html │ │ ├── accessibilitycustomcontent(_:_:importance:)-571fc/ │ │ │ └── index.html │ │ ├── accessibilitycustomcontent(_:_:importance:)-72sim/ │ │ │ └── index.html │ │ ├── accessibilitycustomcontent(_:_:importance:)-7h1pz/ │ │ │ └── index.html │ │ ├── accessibilitycustomcontent(_:_:importance:)-8sma2/ │ │ │ └── index.html │ │ ├── accessibilitycustomcontent(_:_:importance:)-956rk/ │ │ │ └── index.html │ │ ├── accessibilitycustomcontent(_:_:importance:)-96ur4/ │ │ │ └── index.html │ │ ├── accessibilityelement(children:)/ │ │ │ └── index.html │ │ ├── accessibilityfocused(_:)/ │ │ │ └── index.html │ │ ├── accessibilityfocused(_:equals:)/ │ │ │ └── index.html │ │ ├── accessibilityheading(_:)/ │ │ │ └── index.html │ │ ├── accessibilityhidden(_:)/ │ │ │ └── index.html │ │ ├── accessibilityhint(_:)-45b9m/ │ │ │ └── index.html │ │ ├── accessibilityhint(_:)-6451d/ │ │ │ └── index.html │ │ ├── accessibilityhint(_:)-6m2eb/ │ │ │ └── index.html │ │ ├── accessibilityidentifier(_:)/ │ │ │ └── index.html │ │ ├── accessibilityignoresinvertcolors(_:)/ │ │ │ └── index.html │ │ ├── accessibilityinputlabels(_:)-3mfon/ │ │ │ └── index.html │ │ ├── accessibilityinputlabels(_:)-7hs3b/ │ │ │ └── index.html │ │ ├── accessibilityinputlabels(_:)-7kg3p/ │ │ │ └── index.html │ │ ├── accessibilitylabel(_:)-3has0/ │ │ │ └── index.html │ │ ├── accessibilitylabel(_:)-6dv6y/ │ │ │ └── index.html │ │ ├── accessibilitylabel(_:)-e66p/ │ │ │ └── index.html │ │ ├── accessibilitylabeledpair(role:id:in:)/ │ │ │ └── index.html │ │ ├── accessibilitylinkedgroup(id:in:)/ │ │ │ └── index.html │ │ ├── accessibilityremovetraits(_:)/ │ │ │ └── index.html │ │ ├── accessibilityrepresentation(representation:)/ │ │ │ └── index.html │ │ ├── accessibilityrespondstouserinteraction(_:)/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:entries:)-3a01s/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:entries:)-661b4/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:entries:)-7kbeo/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:entries:)-f4c5/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-1kufn/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-1o7jk/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-2ng74/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:entries:entryid:entrylabel:)-6akr8/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:entries:entrylabel:)-6o30j/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:entries:entrylabel:)-8e6r9/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:entries:entrylabel:)-bva6/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:entries:entrylabel:)-cxx7/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:textranges:)-1v5os/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:textranges:)-5mce6/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:textranges:)-7fpc1/ │ │ │ └── index.html │ │ ├── accessibilityrotor(_:textranges:)-91on2/ │ │ │ └── index.html │ │ ├── accessibilityrotorentry(id:in:)/ │ │ │ └── index.html │ │ ├── accessibilityscrollaction(_:)/ │ │ │ └── index.html │ │ ├── accessibilityshowslargecontentviewer()/ │ │ │ └── index.html │ │ ├── accessibilityshowslargecontentviewer(_:)/ │ │ │ └── index.html │ │ ├── accessibilitysortpriority(_:)/ │ │ │ └── index.html │ │ ├── accessibilitytextcontenttype(_:)/ │ │ │ └── index.html │ │ ├── accessibilityvalue(_:)-6kh76/ │ │ │ └── index.html │ │ ├── accessibilityvalue(_:)-6x5in/ │ │ │ └── index.html │ │ ├── accessibilityvalue(_:)-tcbi/ │ │ │ └── index.html │ │ ├── alert(_:ispresented:actions:)-13ppe/ │ │ │ └── index.html │ │ ├── alert(_:ispresented:actions:)-31fv4/ │ │ │ └── index.html │ │ ├── alert(_:ispresented:actions:)-svpk/ │ │ │ └── index.html │ │ ├── alert(_:ispresented:actions:message:)-1lplz/ │ │ │ └── index.html │ │ ├── alert(_:ispresented:actions:message:)-42hzu/ │ │ │ └── index.html │ │ ├── alert(_:ispresented:actions:message:)-8jr1q/ │ │ │ └── index.html │ │ ├── alert(_:ispresented:presenting:actions:)-135kk/ │ │ │ └── index.html │ │ ├── alert(_:ispresented:presenting:actions:)-7je0d/ │ │ │ └── index.html │ │ ├── alert(_:ispresented:presenting:actions:)-7zzve/ │ │ │ └── index.html │ │ ├── alert(_:ispresented:presenting:actions:message:)-17uu0/ │ │ │ └── index.html │ │ ├── alert(_:ispresented:presenting:actions:message:)-36zvz/ │ │ │ └── index.html │ │ ├── alert(_:ispresented:presenting:actions:message:)-7caah/ │ │ │ └── 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:)-23g26/ │ │ │ └── index.html │ │ ├── alignmentguide(_:computevalue:)-4kcej/ │ │ │ └── index.html │ │ ├── allowshittesting(_:)/ │ │ │ └── index.html │ │ ├── allowstightening(_:)/ │ │ │ └── index.html │ │ ├── anchorpreference(key:value:transform:)/ │ │ │ └── index.html │ │ ├── animation(_:)/ │ │ │ └── index.html │ │ ├── animation(_:value:)/ │ │ │ └── index.html │ │ ├── aspectratio(_:contentmode:)-9iav9/ │ │ │ └── index.html │ │ ├── aspectratio(_:contentmode:)-ggdx/ │ │ │ └── index.html │ │ ├── background(_:alignment:)/ │ │ │ └── index.html │ │ ├── background(_:ignoressafeareaedges:)/ │ │ │ └── index.html │ │ ├── background(_:in:fillstyle:)-1a2bf/ │ │ │ └── index.html │ │ ├── background(_:in:fillstyle:)-8qwr1/ │ │ │ └── index.html │ │ ├── background(alignment:content:)/ │ │ │ └── index.html │ │ ├── background(ignoressafeareaedges:)/ │ │ │ └── index.html │ │ ├── background(in:fillstyle:)-58j5e/ │ │ │ └── index.html │ │ ├── background(in:fillstyle:)-8w09p/ │ │ │ └── index.html │ │ ├── backgroundpreferencevalue(_:_:)/ │ │ │ └── index.html │ │ ├── badge(_:)-26gjx/ │ │ │ └── index.html │ │ ├── badge(_:)-2cz64/ │ │ │ └── index.html │ │ ├── badge(_:)-31kbp/ │ │ │ └── index.html │ │ ├── badge(_:)-4i0v1/ │ │ │ └── index.html │ │ ├── blendmode(_:)/ │ │ │ └── index.html │ │ ├── blur(radius:opaque:)/ │ │ │ └── index.html │ │ ├── body/ │ │ │ └── index.html │ │ ├── border(_:width:)/ │ │ │ └── index.html │ │ ├── brightness(_:)/ │ │ │ └── index.html │ │ ├── buttonbordershape(_:)/ │ │ │ └── index.html │ │ ├── buttonstyle(_:)-42cf/ │ │ │ └── index.html │ │ ├── buttonstyle(_:)-4hs9e/ │ │ │ └── index.html │ │ ├── carouselanimation(_:)/ │ │ │ └── index.html │ │ ├── carouseldisabled(_:)/ │ │ │ └── index.html │ │ ├── carouselpadding(_:)/ │ │ │ └── index.html │ │ ├── carouselscale(_:)/ │ │ │ └── index.html │ │ ├── carouselspacing(_:)/ │ │ │ └── index.html │ │ ├── carouselstyle(_:)/ │ │ │ └── index.html │ │ ├── carouseltrigger(on:)/ │ │ │ └── index.html │ │ ├── clipped(antialiased:)/ │ │ │ └── index.html │ │ ├── clipshape(_:style:)/ │ │ │ └── index.html │ │ ├── colorinvert()/ │ │ │ └── index.html │ │ ├── colormultiply(_:)/ │ │ │ └── index.html │ │ ├── colorscheme(_:)/ │ │ │ └── index.html │ │ ├── compositinggroup()/ │ │ │ └── index.html │ │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-41ud8/ │ │ │ └── index.html │ │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-4ywhx/ │ │ │ └── index.html │ │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:)-7ipnf/ │ │ │ └── index.html │ │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-1kurz/ │ │ │ └── index.html │ │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-5vmyl/ │ │ │ └── index.html │ │ ├── confirmationdialog(_:ispresented:titlevisibility:actions:message:)-9sue3/ │ │ │ └── index.html │ │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-1tkx/ │ │ │ └── index.html │ │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-5diu1/ │ │ │ └── index.html │ │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-7pkdq/ │ │ │ └── index.html │ │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-296mh/ │ │ │ └── index.html │ │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-5uj0y/ │ │ │ └── index.html │ │ ├── confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-7cjsq/ │ │ │ └── index.html │ │ ├── containershape(_:)/ │ │ │ └── index.html │ │ ├── contentshape(_:_:eofill:)/ │ │ │ └── index.html │ │ ├── contentshape(_:eofill:)/ │ │ │ └── index.html │ │ ├── contextmenu(_:)/ │ │ │ └── index.html │ │ ├── contextmenu(menuitems:)/ │ │ │ └── index.html │ │ ├── contrast(_:)/ │ │ │ └── index.html │ │ ├── controlgroupstyle(_:)/ │ │ │ └── index.html │ │ ├── controlsize(_:)/ │ │ │ └── index.html │ │ ├── coordinatespace(name:)/ │ │ │ └── index.html │ │ ├── cornerradius(_:antialiased:)/ │ │ │ └── index.html │ │ ├── datepickerstyle(_:)/ │ │ │ └── index.html │ │ ├── defaultappstorage(_:)/ │ │ │ └── index.html │ │ ├── deletedisabled(_:)/ │ │ │ └── index.html │ │ ├── disableautocorrection(_:)/ │ │ │ └── index.html │ │ ├── disabled(_:)/ │ │ │ └── index.html │ │ ├── drawinggroup(opaque:colormode:)/ │ │ │ └── index.html │ │ ├── dynamictypesize(_:)/ │ │ │ └── index.html │ │ ├── edgesignoringsafearea(_:)/ │ │ │ └── index.html │ │ ├── environment(_:_:)/ │ │ │ └── index.html │ │ ├── environmentobject(_:)/ │ │ │ └── index.html │ │ ├── exportsitemproviders(_:onexport:)/ │ │ │ └── index.html │ │ ├── exportsitemproviders(_:onexport:onedit:)/ │ │ │ └── index.html │ │ ├── fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-6evgr/ │ │ │ └── index.html │ │ ├── fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-8iv2y/ │ │ │ └── index.html │ │ ├── fileexporter(ispresented:documents:contenttype:oncompletion:)-233kd/ │ │ │ └── index.html │ │ ├── fileexporter(ispresented:documents:contenttype:oncompletion:)-7map2/ │ │ │ └── index.html │ │ ├── fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:)/ │ │ │ └── index.html │ │ ├── fileimporter(ispresented:allowedcontenttypes:oncompletion:)/ │ │ │ └── index.html │ │ ├── filemover(ispresented:file:oncompletion:)/ │ │ │ └── index.html │ │ ├── filemover(ispresented:files:oncompletion:)/ │ │ │ └── index.html │ │ ├── fixedsize()/ │ │ │ └── index.html │ │ ├── fixedsize(horizontal:vertical:)/ │ │ │ └── index.html │ │ ├── flipsforrighttoleftlayoutdirection(_:)/ │ │ │ └── index.html │ │ ├── focusable(_:)/ │ │ │ └── index.html │ │ ├── focusable(_:onfocuschange:)/ │ │ │ └── index.html │ │ ├── focused(_:)/ │ │ │ └── index.html │ │ ├── focused(_:equals:)/ │ │ │ └── index.html │ │ ├── focusedscenevalue(_:_:)/ │ │ │ └── index.html │ │ ├── focusedvalue(_:_:)/ │ │ │ └── index.html │ │ ├── focusscope(_:)/ │ │ │ └── index.html │ │ ├── font(_:)/ │ │ │ └── index.html │ │ ├── foregroundcolor(_:)/ │ │ │ └── index.html │ │ ├── foregroundstyle(_:)/ │ │ │ └── index.html │ │ ├── foregroundstyle(_:_:)/ │ │ │ └── index.html │ │ ├── foregroundstyle(_:_:_:)/ │ │ │ └── index.html │ │ ├── frame()/ │ │ │ └── index.html │ │ ├── frame(minwidth:idealwidth:maxwidth:minheight:idealheight:maxheight:alignment:)/ │ │ │ └── index.html │ │ ├── frame(width:height:alignment:)/ │ │ │ └── index.html │ │ ├── gesture(_:including:)/ │ │ │ └── index.html │ │ ├── grayscale(_:)/ │ │ │ └── index.html │ │ ├── groupboxstyle(_:)/ │ │ │ └── index.html │ │ ├── handlesexternalevents(preferring:allowing:)/ │ │ │ └── index.html │ │ ├── headerprominence(_:)/ │ │ │ └── index.html │ │ ├── help(_:)-296/ │ │ │ └── index.html │ │ ├── help(_:)-2u744/ │ │ │ └── index.html │ │ ├── help(_:)-4q5ms/ │ │ │ └── index.html │ │ ├── hidden()/ │ │ │ └── index.html │ │ ├── highprioritygesture(_:including:)/ │ │ │ └── index.html │ │ ├── horizontalradiogrouplayout()/ │ │ │ └── index.html │ │ ├── huerotation(_:)/ │ │ │ └── index.html │ │ ├── id(_:)/ │ │ │ └── index.html │ │ ├── ignoressafearea(_:edges:)/ │ │ │ └── index.html │ │ ├── imagescale(_:)/ │ │ │ └── index.html │ │ ├── importsitemproviders(_:onimport:)/ │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(_:initialindex:stackcontent:)-4x5f3/ │ │ │ └── index.html │ │ ├── init(_:initialindex:stackcontent:)-8ktnr/ │ │ │ └── index.html │ │ ├── interactivedismissdisabled(_:)/ │ │ │ └── index.html │ │ ├── itemprovider(_:)/ │ │ │ └── index.html │ │ ├── keyboardshortcut(_:)-30f12/ │ │ │ └── index.html │ │ ├── keyboardshortcut(_:)-38k96/ │ │ │ └── index.html │ │ ├── keyboardshortcut(_:modifiers:)/ │ │ │ └── index.html │ │ ├── keyboardshortcut(_:modifiers:localization:)/ │ │ │ └── index.html │ │ ├── labelshidden()/ │ │ │ └── index.html │ │ ├── labelstyle(_:)/ │ │ │ └── index.html │ │ ├── layoutpriority(_:)/ │ │ │ └── index.html │ │ ├── linelimit(_:)/ │ │ │ └── index.html │ │ ├── linespacing(_:)/ │ │ │ └── index.html │ │ ├── listitemtint(_:)-66j6h/ │ │ │ └── index.html │ │ ├── listitemtint(_:)-6zn9q/ │ │ │ └── index.html │ │ ├── listrowbackground(_:)/ │ │ │ └── index.html │ │ ├── listrowinsets(_:)/ │ │ │ └── index.html │ │ ├── liststyle(_:)/ │ │ │ └── index.html │ │ ├── luminancetoalpha()/ │ │ │ └── index.html │ │ ├── mask(_:)/ │ │ │ └── index.html │ │ ├── mask(alignment:_:)/ │ │ │ └── index.html │ │ ├── matchedgeometryeffect(id:in:properties:anchor:issource:)/ │ │ │ └── index.html │ │ ├── menubuttonstyle(_:)/ │ │ │ └── index.html │ │ ├── menuindicator(_:)/ │ │ │ └── index.html │ │ ├── menustyle(_:)/ │ │ │ └── index.html │ │ ├── minimumscalefactor(_:)/ │ │ │ └── index.html │ │ ├── modifier(_:)/ │ │ │ └── index.html │ │ ├── monospaceddigit()/ │ │ │ └── index.html │ │ ├── movedisabled(_:)/ │ │ │ └── index.html │ │ ├── multilinetextalignment(_:)/ │ │ │ └── index.html │ │ ├── navigationsubtitle(_:)-16d52/ │ │ │ └── index.html │ │ ├── navigationsubtitle(_:)-206md/ │ │ │ └── index.html │ │ ├── navigationsubtitle(_:)-7em2i/ │ │ │ └── index.html │ │ ├── navigationtitle(_:)-7aj99/ │ │ │ └── index.html │ │ ├── navigationtitle(_:)-7jd07/ │ │ │ └── index.html │ │ ├── navigationtitle(_:)-7twkm/ │ │ │ └── index.html │ │ ├── navigationtitle(_:)-7w547/ │ │ │ └── index.html │ │ ├── navigationviewstyle(_:)/ │ │ │ └── index.html │ │ ├── offset(_:)/ │ │ │ └── index.html │ │ ├── offset(x:y:)/ │ │ │ └── index.html │ │ ├── onappear(perform:)/ │ │ │ └── index.html │ │ ├── oncarousel(_:)/ │ │ │ └── index.html │ │ ├── oncarouseltranslation(_:)/ │ │ │ └── index.html │ │ ├── onchange(of:perform:)/ │ │ │ └── index.html │ │ ├── oncommand(_:perform:)/ │ │ │ └── index.html │ │ ├── oncontinueuseractivity(_:perform:)/ │ │ │ └── index.html │ │ ├── oncopycommand(perform:)/ │ │ │ └── index.html │ │ ├── oncutcommand(perform:)/ │ │ │ └── index.html │ │ ├── ondeletecommand(perform:)/ │ │ │ └── index.html │ │ ├── ondisappear(perform:)/ │ │ │ └── index.html │ │ ├── ondrag(_:)/ │ │ │ └── index.html │ │ ├── ondrag(_:preview:)/ │ │ │ └── index.html │ │ ├── ondrop(of:delegate:)-1ea27/ │ │ │ └── index.html │ │ ├── ondrop(of:delegate:)-8thdr/ │ │ │ └── index.html │ │ ├── ondrop(of:istargeted:perform:)-363wn/ │ │ │ └── index.html │ │ ├── ondrop(of:istargeted:perform:)-3bmbv/ │ │ │ └── index.html │ │ ├── ondrop(of:istargeted:perform:)-82gpe/ │ │ │ └── index.html │ │ ├── ondrop(of:istargeted:perform:)-84ef9/ │ │ │ └── index.html │ │ ├── onexitcommand(perform:)/ │ │ │ └── index.html │ │ ├── onhover(perform:)/ │ │ │ └── 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 │ │ ├── onmovecommand(perform:)/ │ │ │ └── index.html │ │ ├── onopenurl(perform:)/ │ │ │ └── index.html │ │ ├── onpastecommand(of:perform:)-4k6ie/ │ │ │ └── index.html │ │ ├── onpastecommand(of:perform:)-wliz/ │ │ │ └── index.html │ │ ├── onpastecommand(of:validator:perform:)-7tcqn/ │ │ │ └── index.html │ │ ├── onpastecommand(of:validator:perform:)-9ddq9/ │ │ │ └── index.html │ │ ├── onplaypausecommand(perform:)/ │ │ │ └── index.html │ │ ├── onpreferencechange(_:perform:)/ │ │ │ └── index.html │ │ ├── onreceive(_:perform:)/ │ │ │ └── index.html │ │ ├── onshuffle(_:)/ │ │ │ └── index.html │ │ ├── onshuffledeck(_:)/ │ │ │ └── index.html │ │ ├── onshuffledecktranslation(_:)/ │ │ │ └── index.html │ │ ├── onshuffletranslation(_:)/ │ │ │ └── index.html │ │ ├── onsubmit(of:_:)/ │ │ │ └── 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 │ │ ├── padding(_:)-7zetw/ │ │ │ └── index.html │ │ ├── padding(_:)-9obs7/ │ │ │ └── index.html │ │ ├── padding(_:_:)/ │ │ │ └── index.html │ │ ├── pagecommand(value:in:step:)/ │ │ │ └── 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 │ │ ├── prefersdefaultfocus(_:in:)/ │ │ │ └── index.html │ │ ├── presentedwindowstyle(_:)/ │ │ │ └── index.html │ │ ├── presentedwindowtoolbarstyle(_:)/ │ │ │ └── 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 │ │ ├── rotation3deffect(_:axis:anchor:anchorz:perspective:)/ │ │ │ └── index.html │ │ ├── rotationeffect(_:anchor:)/ │ │ │ └── index.html │ │ ├── safeareainset(edge:alignment:spacing:content:)-9cc9j/ │ │ │ └── index.html │ │ ├── safeareainset(edge:alignment:spacing:content:)-9ojua/ │ │ │ └── index.html │ │ ├── saturation(_:)/ │ │ │ └── index.html │ │ ├── scaledtofill()/ │ │ │ └── index.html │ │ ├── scaledtofit()/ │ │ │ └── index.html │ │ ├── scaleeffect(_:anchor:)-2caa5/ │ │ │ └── index.html │ │ ├── scaleeffect(_:anchor:)-718iu/ │ │ │ └── index.html │ │ ├── scaleeffect(x:y:anchor:)/ │ │ │ └── index.html │ │ ├── scenepadding(_:)/ │ │ │ └── index.html │ │ ├── searchable(text:placement:prompt:)-2vm7x/ │ │ │ └── index.html │ │ ├── searchable(text:placement:prompt:)-8rgzb/ │ │ │ └── index.html │ │ ├── searchable(text:placement:prompt:)-988ga/ │ │ │ └── index.html │ │ ├── searchable(text:placement:prompt:suggestions:)-3zci7/ │ │ │ └── index.html │ │ ├── searchable(text:placement:prompt:suggestions:)-5taln/ │ │ │ └── index.html │ │ ├── searchable(text:placement:prompt:suggestions:)-8jhzt/ │ │ │ └── index.html │ │ ├── searchcompletion(_:)/ │ │ │ └── index.html │ │ ├── shadow(color:radius:x:y:)/ │ │ │ └── index.html │ │ ├── sheet(ispresented:ondismiss:content:)/ │ │ │ └── index.html │ │ ├── sheet(item:ondismiss:content:)/ │ │ │ └── index.html │ │ ├── shuffleanimation(_:)/ │ │ │ └── index.html │ │ ├── shuffledeckanimation(_:)/ │ │ │ └── index.html │ │ ├── shuffledeckdisabled(_:)/ │ │ │ └── index.html │ │ ├── shuffledeckscale(_:)/ │ │ │ └── index.html │ │ ├── shuffledeckstyle(_:)/ │ │ │ └── index.html │ │ ├── shuffledecktrigger(on:)/ │ │ │ └── index.html │ │ ├── shuffledisabled(_:)/ │ │ │ └── index.html │ │ ├── shuffleoffset(_:)/ │ │ │ └── index.html │ │ ├── shufflepadding(_:)/ │ │ │ └── index.html │ │ ├── shufflescale(_:)/ │ │ │ └── index.html │ │ ├── shufflestyle(_:)/ │ │ │ └── index.html │ │ ├── shuffletrigger(on:)/ │ │ │ └── index.html │ │ ├── simultaneousgesture(_:including:)/ │ │ │ └── index.html │ │ ├── speechadjustedpitch(_:)/ │ │ │ └── index.html │ │ ├── speechalwaysincludespunctuation(_:)/ │ │ │ └── index.html │ │ ├── speechannouncementsqueued(_:)/ │ │ │ └── index.html │ │ ├── speechspellsoutcharacters(_:)/ │ │ │ └── index.html │ │ ├── submitlabel(_:)/ │ │ │ └── index.html │ │ ├── submitscope(_:)/ │ │ │ └── index.html │ │ ├── swipeactions(edge:allowsfullswipe:content:)/ │ │ │ └── index.html │ │ ├── symbolrenderingmode(_:)/ │ │ │ └── index.html │ │ ├── symbolvariant(_:)/ │ │ │ └── index.html │ │ ├── tabitem(_:)/ │ │ │ └── index.html │ │ ├── tablestyle(_:)/ │ │ │ └── index.html │ │ ├── tabviewstyle(_:)/ │ │ │ └── index.html │ │ ├── tag(_:)/ │ │ │ └── index.html │ │ ├── task(id:priority:_:)/ │ │ │ └── index.html │ │ ├── task(priority:_:)/ │ │ │ └── index.html │ │ ├── textcase(_:)/ │ │ │ └── index.html │ │ ├── textcontenttype(_:)/ │ │ │ └── index.html │ │ ├── textfieldstyle(_:)/ │ │ │ └── index.html │ │ ├── textselection(_:)/ │ │ │ └── index.html │ │ ├── tint(_:)/ │ │ │ └── index.html │ │ ├── togglestyle(_:)/ │ │ │ └── index.html │ │ ├── toolbar(content:)-2fsde/ │ │ │ └── index.html │ │ ├── toolbar(content:)-9838r/ │ │ │ └── index.html │ │ ├── toolbar(id:content:)/ │ │ │ └── index.html │ │ ├── touchbar(_:)/ │ │ │ └── index.html │ │ ├── touchbar(content:)/ │ │ │ └── index.html │ │ ├── touchbarcustomizationlabel(_:)/ │ │ │ └── index.html │ │ ├── touchbaritempresence(_:)/ │ │ │ └── index.html │ │ ├── touchbaritemprincipal(_:)/ │ │ │ └── index.html │ │ ├── transaction(_:)/ │ │ │ └── index.html │ │ ├── transformanchorpreference(key:value:transform:)/ │ │ │ └── index.html │ │ ├── transformeffect(_:)/ │ │ │ └── index.html │ │ ├── transformenvironment(_:transform:)/ │ │ │ └── index.html │ │ ├── transformpreference(_:_:)/ │ │ │ └── index.html │ │ ├── transition(_:)/ │ │ │ └── index.html │ │ ├── truncationmode(_:)/ │ │ │ └── index.html │ │ ├── unredacted()/ │ │ │ └── index.html │ │ ├── useractivity(_:element:_:)/ │ │ │ └── index.html │ │ ├── useractivity(_:isactive:_:)/ │ │ │ └── index.html │ │ ├── view-implementations/ │ │ │ └── index.html │ │ └── zindex(_:)/ │ │ └── index.html │ └── shufflestyle/ │ ├── !=(_:_:)/ │ │ └── index.html │ ├── equatable-implementations/ │ │ └── index.html │ ├── index.html │ ├── rotatein/ │ │ └── index.html │ ├── rotateout/ │ │ └── index.html │ └── slide/ │ └── index.html ├── index/ │ └── index.json ├── index.html ├── js/ │ ├── chunk-2d0d3105.cd72cc8e.js │ ├── chunk-vendors.b24b7aaa.js │ ├── documentation-topic.f62098b6.js │ ├── documentation-topic~topic~tutorials-overview.8e36e44f.js │ ├── highlight-js-bash.1b52852f.js │ ├── highlight-js-c.d1db3f17.js │ ├── highlight-js-cpp.eaddddbe.js │ ├── highlight-js-css.75eab1fe.js │ ├── highlight-js-custom-markdown.7cffc4b3.js │ ├── highlight-js-custom-swift.5cda5c20.js │ ├── highlight-js-diff.62d66733.js │ ├── highlight-js-http.163e45b6.js │ ├── highlight-js-java.8326d9d8.js │ ├── highlight-js-javascript.acb8a8eb.js │ ├── highlight-js-json.471128d2.js │ ├── highlight-js-llvm.6100b125.js │ ├── highlight-js-markdown.90077643.js │ ├── highlight-js-objectivec.bcdf5156.js │ ├── highlight-js-perl.757d7b6f.js │ ├── highlight-js-php.cc8d6c27.js │ ├── highlight-js-python.c214ed92.js │ ├── highlight-js-ruby.f889d392.js │ ├── highlight-js-scss.62ee18da.js │ ├── highlight-js-shell.dd7f411f.js │ ├── highlight-js-swift.84f3e88c.js │ ├── highlight-js-xml.9c3688c7.js │ ├── index.58e30ec4.js │ ├── topic.6a1c7b7f.js │ └── tutorials-overview.c8178b83.js ├── metadata.json └── theme-settings.json