├── .gitignore ├── App ├── App.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Buttons │ ├── HIButtonsView.swift │ ├── HICheckboxesView.swift │ ├── HIRadioButtonsView.swift │ └── HISwitchesView.swift ├── Containers │ ├── HIGroupBoxView.swift │ └── HITabView.swift ├── ContentView.swift ├── Controls │ ├── HIColorsView.swift │ ├── HIPickersView.swift │ ├── HIPopUpControlsView.swift │ ├── HIProgressIndicatorView.swift │ ├── HISegmentedControlView.swift │ └── HISlidersView.swift ├── HITabViewController.swift ├── HIToolbox.entitlements ├── Info.plist ├── Number+Scaling.swift ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── Tables │ ├── HIOutlineViewController.swift │ ├── HISidebarViewController.swift │ └── HITablesView.swift └── Text │ ├── HILabelsView.swift │ ├── HITextFieldsView.swift │ └── HITextViewsView.swift ├── Catalyst Controls Gallery.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystControlsGallery/HEAD/.gitignore -------------------------------------------------------------------------------- /App/App.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystControlsGallery/HEAD/App/App.swift -------------------------------------------------------------------------------- /App/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystControlsGallery/HEAD/App/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /App/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystControlsGallery/HEAD/App/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /App/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystControlsGallery/HEAD/App/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /App/Buttons/HIButtonsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystControlsGallery/HEAD/App/Buttons/HIButtonsView.swift -------------------------------------------------------------------------------- /App/Buttons/HICheckboxesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystControlsGallery/HEAD/App/Buttons/HICheckboxesView.swift -------------------------------------------------------------------------------- /App/Buttons/HIRadioButtonsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystControlsGallery/HEAD/App/Buttons/HIRadioButtonsView.swift -------------------------------------------------------------------------------- /App/Buttons/HISwitchesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystControlsGallery/HEAD/App/Buttons/HISwitchesView.swift -------------------------------------------------------------------------------- /App/Containers/HIGroupBoxView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystControlsGallery/HEAD/App/Containers/HIGroupBoxView.swift -------------------------------------------------------------------------------- /App/Containers/HITabView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystControlsGallery/HEAD/App/Containers/HITabView.swift -------------------------------------------------------------------------------- /App/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystControlsGallery/HEAD/App/ContentView.swift -------------------------------------------------------------------------------- /App/Controls/HIColorsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystControlsGallery/HEAD/App/Controls/HIColorsView.swift -------------------------------------------------------------------------------- /App/Controls/HIPickersView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystControlsGallery/HEAD/App/Controls/HIPickersView.swift -------------------------------------------------------------------------------- /App/Controls/HIPopUpControlsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystControlsGallery/HEAD/App/Controls/HIPopUpControlsView.swift -------------------------------------------------------------------------------- /App/Controls/HIProgressIndicatorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystControlsGallery/HEAD/App/Controls/HIProgressIndicatorView.swift -------------------------------------------------------------------------------- /App/Controls/HISegmentedControlView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystControlsGallery/HEAD/App/Controls/HISegmentedControlView.swift -------------------------------------------------------------------------------- /App/Controls/HISlidersView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystControlsGallery/HEAD/App/Controls/HISlidersView.swift -------------------------------------------------------------------------------- /App/HITabViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystControlsGallery/HEAD/App/HITabViewController.swift -------------------------------------------------------------------------------- /App/HIToolbox.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystControlsGallery/HEAD/App/HIToolbox.entitlements -------------------------------------------------------------------------------- /App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystControlsGallery/HEAD/App/Info.plist -------------------------------------------------------------------------------- /App/Number+Scaling.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystControlsGallery/HEAD/App/Number+Scaling.swift -------------------------------------------------------------------------------- /App/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystControlsGallery/HEAD/App/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /App/Tables/HIOutlineViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystControlsGallery/HEAD/App/Tables/HIOutlineViewController.swift -------------------------------------------------------------------------------- /App/Tables/HISidebarViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystControlsGallery/HEAD/App/Tables/HISidebarViewController.swift -------------------------------------------------------------------------------- /App/Tables/HITablesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystControlsGallery/HEAD/App/Tables/HITablesView.swift -------------------------------------------------------------------------------- /App/Text/HILabelsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystControlsGallery/HEAD/App/Text/HILabelsView.swift -------------------------------------------------------------------------------- /App/Text/HITextFieldsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystControlsGallery/HEAD/App/Text/HITextFieldsView.swift -------------------------------------------------------------------------------- /App/Text/HITextViewsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystControlsGallery/HEAD/App/Text/HITextViewsView.swift -------------------------------------------------------------------------------- /Catalyst Controls Gallery.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystControlsGallery/HEAD/Catalyst Controls Gallery.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Catalyst Controls Gallery.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystControlsGallery/HEAD/Catalyst Controls Gallery.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystControlsGallery/HEAD/README.md --------------------------------------------------------------------------------