├── .github └── FUNDING.yml ├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── Demo └── StripesDemo │ ├── Shared │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── ContentView.swift │ └── StripesDemoApp.swift │ ├── StripesDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved │ ├── iOS │ └── Info.plist │ └── macOS │ ├── Info.plist │ └── macOS.entitlements ├── Documentation ├── stripes-install-1.png ├── stripes-install-2.png ├── stripes-swiftui-ipad.png ├── stripes-swiftui-iphone.png └── stripes-swiftui-macos.png ├── LICENSE ├── Package.swift ├── README.md └── Sources └── Stripes └── Stripes.swift /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/Stripes/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/Stripes/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/Stripes/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/Stripes/HEAD/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Demo/StripesDemo/Shared/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/Stripes/HEAD/Demo/StripesDemo/Shared/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Demo/StripesDemo/Shared/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/Stripes/HEAD/Demo/StripesDemo/Shared/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo/StripesDemo/Shared/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/Stripes/HEAD/Demo/StripesDemo/Shared/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Demo/StripesDemo/Shared/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/Stripes/HEAD/Demo/StripesDemo/Shared/ContentView.swift -------------------------------------------------------------------------------- /Demo/StripesDemo/Shared/StripesDemoApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/Stripes/HEAD/Demo/StripesDemo/Shared/StripesDemoApp.swift -------------------------------------------------------------------------------- /Demo/StripesDemo/StripesDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/Stripes/HEAD/Demo/StripesDemo/StripesDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/StripesDemo/StripesDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/Stripes/HEAD/Demo/StripesDemo/StripesDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demo/StripesDemo/StripesDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/Stripes/HEAD/Demo/StripesDemo/StripesDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Demo/StripesDemo/StripesDemo.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/Stripes/HEAD/Demo/StripesDemo/StripesDemo.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Demo/StripesDemo/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/Stripes/HEAD/Demo/StripesDemo/iOS/Info.plist -------------------------------------------------------------------------------- /Demo/StripesDemo/macOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/Stripes/HEAD/Demo/StripesDemo/macOS/Info.plist -------------------------------------------------------------------------------- /Demo/StripesDemo/macOS/macOS.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/Stripes/HEAD/Demo/StripesDemo/macOS/macOS.entitlements -------------------------------------------------------------------------------- /Documentation/stripes-install-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/Stripes/HEAD/Documentation/stripes-install-1.png -------------------------------------------------------------------------------- /Documentation/stripes-install-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/Stripes/HEAD/Documentation/stripes-install-2.png -------------------------------------------------------------------------------- /Documentation/stripes-swiftui-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/Stripes/HEAD/Documentation/stripes-swiftui-ipad.png -------------------------------------------------------------------------------- /Documentation/stripes-swiftui-iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/Stripes/HEAD/Documentation/stripes-swiftui-iphone.png -------------------------------------------------------------------------------- /Documentation/stripes-swiftui-macos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/Stripes/HEAD/Documentation/stripes-swiftui-macos.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/Stripes/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/Stripes/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/Stripes/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Stripes/Stripes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneko/Stripes/HEAD/Sources/Stripes/Stripes.swift --------------------------------------------------------------------------------