gitextract_d1c0xsyf/ ├── .editorconfig ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ └── config.yml │ └── workflows/ │ └── ci.yml ├── .gitignore ├── .spi.yml ├── .swift-version ├── .swiftformat ├── Examples/ │ ├── .swiftpm/ │ │ └── xcode/ │ │ └── package.xcworkspace/ │ │ └── contents.xcworkspacedata │ ├── Package.swift │ └── Showcase/ │ ├── Showcase/ │ │ ├── App.swift │ │ ├── AppView.swift │ │ ├── Controls.swift │ │ ├── Helpers.swift │ │ ├── List.swift │ │ ├── Navigation.swift │ │ ├── Presentation.swift │ │ ├── ScrollView.swift │ │ ├── Showcase.entitlements │ │ └── UIViewRepresentable.swift │ └── Showcase.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata/ │ └── xcschemes/ │ └── Showcase.xcscheme ├── LICENSE ├── Package.swift ├── README.md ├── Sources/ │ ├── Introspect.swift │ ├── IntrospectableViewType.swift │ ├── IntrospectionSelector.swift │ ├── IntrospectionView.swift │ ├── PlatformVersion.swift │ ├── PlatformView.swift │ ├── PlatformViewVersion.swift │ ├── Utils.swift │ ├── ViewTypes/ │ │ ├── Button.swift │ │ ├── ColorPicker.swift │ │ ├── DatePicker.swift │ │ ├── DatePickerWithCompactStyle.swift │ │ ├── DatePickerWithFieldStyle.swift │ │ ├── DatePickerWithGraphicalStyle.swift │ │ ├── DatePickerWithStepperFieldStyle.swift │ │ ├── DatePickerWithWheelStyle.swift │ │ ├── Form.swift │ │ ├── FormWithGroupedStyle.swift │ │ ├── FullScreenCover.swift │ │ ├── List.swift │ │ ├── ListCell.swift │ │ ├── ListWithBorderedStyle.swift │ │ ├── ListWithGroupedStyle.swift │ │ ├── ListWithInsetGroupedStyle.swift │ │ ├── ListWithInsetStyle.swift │ │ ├── ListWithSidebarStyle.swift │ │ ├── Map.swift │ │ ├── NavigationSplitView.swift │ │ ├── NavigationStack.swift │ │ ├── NavigationViewWithColumnsStyle.swift │ │ ├── NavigationViewWithStackStyle.swift │ │ ├── PageControl.swift │ │ ├── PickerWithMenuStyle.swift │ │ ├── PickerWithSegmentedStyle.swift │ │ ├── PickerWithWheelStyle.swift │ │ ├── Popover.swift │ │ ├── ProgressViewWithCircularStyle.swift │ │ ├── ProgressViewWithLinearStyle.swift │ │ ├── ScrollView.swift │ │ ├── SearchField.swift │ │ ├── SecureField.swift │ │ ├── Sheet.swift │ │ ├── SignInWithAppleButton.swift │ │ ├── Slider.swift │ │ ├── Stepper.swift │ │ ├── TabView.swift │ │ ├── TabViewWithPageStyle.swift │ │ ├── Table.swift │ │ ├── TextEditor.swift │ │ ├── TextField.swift │ │ ├── TextFieldWithVerticalAxis.swift │ │ ├── Toggle.swift │ │ ├── ToggleWithButtonStyle.swift │ │ ├── ToggleWithCheckboxStyle.swift │ │ ├── ToggleWithSwitchStyle.swift │ │ ├── VideoPlayer.swift │ │ ├── View.swift │ │ ├── ViewController.swift │ │ ├── WebView.swift │ │ └── Window.swift │ └── Weak.swift ├── SwiftUIIntrospect.podspec ├── SwiftUIIntrospect.xcworkspace/ │ ├── contents.xcworkspacedata │ └── xcshareddata/ │ ├── IDEWorkspaceChecks.plist │ ├── WorkspaceSettings.xcsettings │ └── xcschemes/ │ └── SwiftUIIntrospect.xcscheme ├── Tests/ │ ├── TestFramework/ │ │ └── TestFramework.swift │ ├── Tests/ │ │ ├── PlatformVersionTests.swift │ │ ├── TestUtils.swift │ │ ├── ViewTypes/ │ │ │ ├── ButtonTests.swift │ │ │ ├── ColorPickerTests.swift │ │ │ ├── DatePickerTests.swift │ │ │ ├── DatePickerWithCompactFieldStyleTests.swift │ │ │ ├── DatePickerWithFieldStyleTests.swift │ │ │ ├── DatePickerWithGraphicalStyleTests.swift │ │ │ ├── DatePickerWithStepperFieldStyleTests.swift │ │ │ ├── DatePickerWithWheelStyleTests.swift │ │ │ ├── FormTests.swift │ │ │ ├── FormWithGroupedStyleTests.swift │ │ │ ├── FullScreenCoverTests.swift │ │ │ ├── ListCellTests.swift │ │ │ ├── ListTests.swift │ │ │ ├── ListWithBorderedStyleTests.swift │ │ │ ├── ListWithGroupedStyleTests.swift │ │ │ ├── ListWithInsetGroupedStyleTests.swift │ │ │ ├── ListWithInsetStyleTests.swift │ │ │ ├── ListWithPlainStyleTests.swift │ │ │ ├── ListWithSidebarStyleTests.swift │ │ │ ├── MapTests.swift │ │ │ ├── NavigationSplitViewTests.swift │ │ │ ├── NavigationStackTests.swift │ │ │ ├── NavigationViewWithColumnsStyleTests.swift │ │ │ ├── NavigationViewWithStackStyleTests.swift │ │ │ ├── PageControlTests.swift │ │ │ ├── PickerWithMenuStyleTests.swift │ │ │ ├── PickerWithSegmentedStyleTests.swift │ │ │ ├── PickerWithWheelStyleTests.swift │ │ │ ├── PopoverTests.swift │ │ │ ├── ProgressViewWithCircularStyleTests.swift │ │ │ ├── ProgressViewWithLinearStyleTests.swift │ │ │ ├── ScrollViewTests.swift │ │ │ ├── SearchFieldTests.swift │ │ │ ├── SecureFieldTests.swift │ │ │ ├── SheetTests.swift │ │ │ ├── SliderTests.swift │ │ │ ├── StepperTests.swift │ │ │ ├── TabViewTests.swift │ │ │ ├── TabViewWithPageStyleTests.swift │ │ │ ├── TableTests.swift │ │ │ ├── TextEditorTests.swift │ │ │ ├── TextFieldTests.swift │ │ │ ├── TextFieldWithVerticalAxisTests.swift │ │ │ ├── ToggleTests.swift │ │ │ ├── ToggleWithButtonStyleTests.swift │ │ │ ├── ToggleWithCheckboxStyleTests.swift │ │ │ ├── ToggleWithSwitchStyleTests.swift │ │ │ ├── VideoPlayerTests.swift │ │ │ ├── ViewControllerTests.swift │ │ │ ├── ViewTests.swift │ │ │ ├── WebViewTests.swift │ │ │ └── WindowTests.swift │ │ └── WeakTests.swift │ ├── Tests.xcodeproj/ │ │ ├── project.pbxproj │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ ├── SwiftUIIntrospectTestFramework.xcscheme │ │ └── SwiftUIIntrospectTests.xcscheme │ ├── Tests.xctestplan │ └── TestsHostApp/ │ ├── App.swift │ └── Assets.xcassets/ │ ├── AccentColor.colorset/ │ │ └── Contents.json │ ├── AppIcon.appiconset/ │ │ └── Contents.json │ └── Contents.json └── script/ └── pod_release