gitextract_772q8wgy/ ├── .gitignore ├── Examples/ │ └── AxtExamples/ │ ├── AxtExamples/ │ │ ├── Assets.xcassets/ │ │ │ ├── AccentColor.colorset/ │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── AxtExamplesApp.swift │ │ ├── ConfirmationAlertModifier.swift │ │ ├── ContentView.swift │ │ ├── CustomControls.swift │ │ ├── GestureView.swift │ │ ├── MoreButton.swift │ │ ├── NativeViews.swift │ │ ├── Preview Content/ │ │ │ └── Preview Assets.xcassets/ │ │ │ └── Contents.json │ │ └── TogglesView.swift │ ├── AxtExamples.xcodeproj/ │ │ ├── project.pbxproj │ │ └── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── IDEWorkspaceChecks.plist │ └── AxtExamplesTests/ │ ├── ConfirmationAlertModifierTests.swift │ ├── CustomControlsTests.swift │ ├── GestureViewTests.swift │ ├── MoreButtonTests.swift │ ├── NativeViewsTests.swift │ └── TogglesViewTests.swift ├── Package.swift ├── README.md └── Sources/ └── Axt/ ├── Axt.swift ├── AxtTest/ │ ├── Axt+description.swift │ ├── Axt+find.swift │ ├── AxtChildNode.swift │ ├── AxtElement.swift │ ├── AxtNode.swift │ ├── AxtTest.swift │ ├── Publisher+Compatibility.swift │ ├── Publisher+firstValue.swift │ └── printHierarchy.swift ├── AxtView.swift ├── Modifier.swift ├── Native/ │ ├── Button.swift │ ├── NavigationLink.swift │ ├── Text.swift │ ├── TextField.swift │ └── Toggle.swift ├── NativeView.swift ├── View+testData.swift ├── View+testId.swift ├── dig.swift └── hostAxtSheet.swift