gitextract_gzhkv01i/ ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ └── ci.yml ├── .gitignore ├── .idoc/ │ └── .filesStat.json ├── LICENSE ├── README.md ├── example/ │ ├── accessibility/ │ │ ├── demo1/ │ │ │ └── README.md │ │ ├── demo2/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo3/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo4/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo5/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── star.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ └── demo6/ │ │ ├── Demo/ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ ├── Shared/ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── ContentView.swift │ │ │ │ └── DemoApp.swift │ │ │ ├── iOS/ │ │ │ │ └── Info.plist │ │ │ └── macOS/ │ │ │ ├── Info.plist │ │ │ └── macOS.entitlements │ │ └── README.md │ ├── advanced-state/ │ │ ├── demo1/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo2/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo3/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo4/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo5/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo6/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo7/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo8/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ └── demo9/ │ │ ├── Demo/ │ │ │ ├── Demo/ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── ContentView.swift │ │ │ │ ├── Demo.entitlements │ │ │ │ ├── DemoApp.swift │ │ │ │ ├── Info.plist │ │ │ │ └── Preview Content/ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ └── Contents.json │ │ │ └── Demo.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── README.md │ ├── alerts-and-menus/ │ │ ├── demo1/ │ │ │ └── README.md │ │ ├── demo10/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Credits.rtf │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo11/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ └── SettingsView.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo2/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo3/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo4/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo5/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo6/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo7/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo8/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ └── demo9/ │ │ ├── Demo/ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ ├── Shared/ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── ContentView.swift │ │ │ │ └── DemoApp.swift │ │ │ ├── iOS/ │ │ │ │ └── Info.plist │ │ │ └── macOS/ │ │ │ ├── Info.plist │ │ │ └── macOS.entitlements │ │ └── README.md │ ├── animation/ │ │ ├── demo1/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo10/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo11/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo12/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo13/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo2/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo3/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo4/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo5/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo6/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo7/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo8/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ └── demo9/ │ │ ├── Demo/ │ │ │ ├── Demo/ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── ContentView.swift │ │ │ │ ├── Demo.entitlements │ │ │ │ ├── DemoApp.swift │ │ │ │ ├── Info.plist │ │ │ │ └── Preview Content/ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ └── Contents.json │ │ │ └── Demo.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── README.md │ ├── appendix-a/ │ │ ├── demo1/ │ │ │ └── README.md │ │ ├── demo10/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── niagara-falls.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo11/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.xcdatamodeld/ │ │ │ │ │ │ ├── .xccurrentversion │ │ │ │ │ │ └── Shared.xcdatamodel/ │ │ │ │ │ │ └── contents │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ └── Persistence.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo12/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo13/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo14/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo15/ │ │ │ └── README.md │ │ ├── demo2/ │ │ │ └── README.md │ │ ├── demo3/ │ │ │ └── README.md │ │ ├── demo4/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo5/ │ │ │ └── README.md │ │ ├── demo6/ │ │ │ └── README.md │ │ ├── demo7/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo8/ │ │ │ └── README.md │ │ └── demo9/ │ │ ├── Demo/ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ ├── Shared/ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── ContentView.swift │ │ │ │ └── DemoApp.swift │ │ │ ├── iOS/ │ │ │ │ └── Info.plist │ │ │ └── macOS/ │ │ │ ├── Info.plist │ │ │ └── macOS.entitlements │ │ └── README.md │ ├── cheat-sheet.md │ ├── composing-views/ │ │ ├── demo1/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── kenny.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo2/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo3/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo4/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo5/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo6/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ └── demo7/ │ │ ├── Demo/ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ ├── Shared/ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── ContentView.swift │ │ │ │ └── DemoApp.swift │ │ │ ├── iOS/ │ │ │ │ └── Info.plist │ │ │ └── macOS/ │ │ │ ├── Info.plist │ │ │ └── macOS.entitlements │ │ └── README.md │ ├── containers/ │ │ ├── demo1/ │ │ │ └── README.md │ │ ├── demo10/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo11/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ └── PostNoSelectionPlaceholder.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo2/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo3/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo4/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo5/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo6/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo7/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo8/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ └── demo9/ │ │ ├── Demo/ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ ├── Shared/ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── ContentView.swift │ │ │ │ └── DemoApp.swift │ │ │ ├── iOS/ │ │ │ │ └── Info.plist │ │ │ └── macOS/ │ │ │ ├── Info.plist │ │ │ └── macOS.entitlements │ │ └── README.md │ ├── cross-platform/ │ │ ├── demo1/ │ │ │ └── README.md │ │ ├── demo2/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo3/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo WatchKit App/ │ │ │ │ │ └── Assets.xcassets/ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Demo WatchKit Extension/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── Complication.complicationset/ │ │ │ │ │ │ │ ├── Circular.imageset/ │ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── Extra Large.imageset/ │ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ │ ├── Graphic Bezel.imageset/ │ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ │ ├── Graphic Circular.imageset/ │ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ │ ├── Graphic Corner.imageset/ │ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ │ ├── Graphic Extra Large.imageset/ │ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ │ ├── Graphic Large Rectangular.imageset/ │ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ │ ├── Modular.imageset/ │ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ │ └── Utilitarian.imageset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ComplicationController.swift │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── NotificationController.swift │ │ │ │ │ ├── NotificationView.swift │ │ │ │ │ ├── Preview Content/ │ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── PushNotificationPayload.apns │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ └── xcshareddata/ │ │ │ │ └── xcschemes/ │ │ │ │ ├── Demo WatchKit App (Complication).xcscheme │ │ │ │ ├── Demo WatchKit App (Notification).xcscheme │ │ │ │ └── Demo WatchKit App.xcscheme │ │ │ └── README.md │ │ └── demo4/ │ │ ├── Demo/ │ │ │ ├── Demo WatchKit App/ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ └── Info.plist │ │ │ ├── Demo WatchKit Extension/ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ ├── Complication.complicationset/ │ │ │ │ │ │ ├── Circular.imageset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Extra Large.imageset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Graphic Bezel.imageset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Graphic Circular.imageset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Graphic Corner.imageset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Graphic Extra Large.imageset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Graphic Large Rectangular.imageset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Modular.imageset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Utilitarian.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── ComplicationController.swift │ │ │ │ ├── ContentView.swift │ │ │ │ ├── DemoApp.swift │ │ │ │ ├── Info.plist │ │ │ │ ├── NotificationController.swift │ │ │ │ ├── NotificationView.swift │ │ │ │ ├── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── PushNotificationPayload.apns │ │ │ └── Demo.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── README.md │ ├── data/ │ │ ├── demo1/ │ │ │ └── README.md │ │ ├── demo10/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ └── TextFile.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo11/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo12/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo2/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Main.xcdatamodeld/ │ │ │ │ │ │ ├── .xccurrentversion │ │ │ │ │ │ └── Shared.xcdatamodel/ │ │ │ │ │ │ └── contents │ │ │ │ │ ├── Model.xcdatamodeld/ │ │ │ │ │ │ └── Model.xcdatamodel/ │ │ │ │ │ │ └── contents │ │ │ │ │ └── Persistence.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo3/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.xcdatamodeld/ │ │ │ │ │ │ ├── .xccurrentversion │ │ │ │ │ │ └── Shared.xcdatamodel/ │ │ │ │ │ │ └── contents │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ └── Persistence.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo4/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.xcdatamodeld/ │ │ │ │ │ │ ├── .xccurrentversion │ │ │ │ │ │ └── Shared.xcdatamodel/ │ │ │ │ │ │ └── contents │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ └── Persistence.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo5/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.xcdatamodeld/ │ │ │ │ │ │ ├── .xccurrentversion │ │ │ │ │ │ └── Shared.xcdatamodel/ │ │ │ │ │ │ └── contents │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ └── Persistence.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo6/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.xcdatamodeld/ │ │ │ │ │ │ ├── .xccurrentversion │ │ │ │ │ │ └── Shared.xcdatamodel/ │ │ │ │ │ │ └── contents │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ └── Persistence.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo7/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.xcdatamodeld/ │ │ │ │ │ │ ├── .xccurrentversion │ │ │ │ │ │ └── Shared.xcdatamodel/ │ │ │ │ │ │ └── contents │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ └── Persistence.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo8/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.xcdatamodeld/ │ │ │ │ │ │ ├── .xccurrentversion │ │ │ │ │ │ └── Shared.xcdatamodel/ │ │ │ │ │ │ └── contents │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ └── Persistence.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ └── demo9/ │ │ ├── Demo/ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ ├── Shared/ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── ContentView.swift │ │ │ │ ├── DemoApp.swift │ │ │ │ └── TextFile.swift │ │ │ ├── iOS/ │ │ │ │ └── Info.plist │ │ │ └── macOS/ │ │ │ ├── Info.plist │ │ │ └── macOS.entitlements │ │ └── README.md │ ├── drawing/ │ │ ├── demo1/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo2/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo3/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ └── demo4/ │ │ ├── Demo/ │ │ │ ├── Demo/ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── ContentView.swift │ │ │ │ ├── Demo.entitlements │ │ │ │ ├── DemoApp.swift │ │ │ │ ├── Info.plist │ │ │ │ └── Preview Content/ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ └── Contents.json │ │ │ └── Demo.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── README.md │ ├── forms/ │ │ ├── demo1/ │ │ │ └── README.md │ │ ├── demo2/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo3/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo4/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo5/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ └── demo6/ │ │ ├── Demo/ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ ├── Shared/ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── ContentView.swift │ │ │ │ └── DemoApp.swift │ │ │ ├── iOS/ │ │ │ │ └── Info.plist │ │ │ └── macOS/ │ │ │ ├── Info.plist │ │ │ └── macOS.entitlements │ │ └── README.md │ ├── images-shapes-media/ │ │ ├── demo1/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── dog.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo10/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo11/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo12/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo13/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ └── macOS/ │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo14/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo2/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── rome.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo3/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── logo.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo4/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo5/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo6/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── singapore.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo7/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo8/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ └── demo9/ │ │ ├── Demo/ │ │ │ ├── Demo/ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── ContentView.swift │ │ │ │ ├── Demo.entitlements │ │ │ │ ├── DemoApp.swift │ │ │ │ ├── Info.plist │ │ │ │ └── Preview Content/ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ └── Contents.json │ │ │ └── Demo.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── README.md │ ├── introduction/ │ │ ├── demo1/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ └── xcshareddata/ │ │ │ │ └── xcschemes/ │ │ │ │ └── Demo.xcscheme │ │ │ └── README.md │ │ └── demo2/ │ │ ├── Demo/ │ │ │ ├── Demo/ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── ContentView.swift │ │ │ │ ├── Demo.entitlements │ │ │ │ ├── DemoApp.swift │ │ │ │ └── Preview Content/ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ └── Contents.json │ │ │ └── Demo.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── README.md │ ├── lists/ │ │ ├── demo1/ │ │ │ └── README.md │ │ ├── demo10/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo11/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo12/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo13/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── paul-hudson.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo2/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo3/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo4/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo5/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo6/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo7/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo8/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ └── demo9/ │ │ ├── Demo/ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ ├── Shared/ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── ContentView.swift │ │ │ │ └── DemoApp.swift │ │ │ ├── iOS/ │ │ │ │ └── Info.plist │ │ │ └── macOS/ │ │ │ ├── Info.plist │ │ │ └── macOS.entitlements │ │ └── README.md │ ├── presenting-views/ │ │ ├── demo1/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo2/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo3/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo4/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo5/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ └── demo6/ │ │ ├── Demo/ │ │ │ ├── Demo/ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── ContentView.swift │ │ │ │ ├── Demo.entitlements │ │ │ │ ├── DemoApp.swift │ │ │ │ ├── Info.plist │ │ │ │ └── Preview Content/ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ └── Contents.json │ │ │ └── Demo.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── README.md │ ├── quick-start/ │ │ ├── answering-the-big-question-should-you-learn-swiftui-uikit-or-both.md │ │ ├── dedication.md │ │ ├── dont-panic.md │ │ ├── frequently-asked-questions-about-swiftui.md │ │ ├── how-to-follow-this-quick-start-guide.md │ │ ├── migrating-from-uikit-to-swiftui.md │ │ ├── swiftui-vs-interface-builder-and-storyboards.md │ │ ├── what-is-swiftui.md │ │ └── whats-in-the-basic-template.md │ ├── responding-to-events/ │ │ ├── demo1/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo2/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo3/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo4/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo5/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo6/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo7/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ └── xcshareddata/ │ │ │ │ └── xcschemes/ │ │ │ │ └── Demo.xcscheme │ │ │ └── README.md │ │ ├── demo8/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ └── demo9/ │ │ ├── Demo/ │ │ │ ├── Demo/ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── ContentView.swift │ │ │ │ ├── DemoApp.swift │ │ │ │ └── Preview Content/ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ └── Contents.json │ │ │ └── Demo.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── Demo2/ │ │ │ ├── Demo2/ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── ContentView.swift │ │ │ │ ├── Demo2App.swift │ │ │ │ └── Preview Content/ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ └── Contents.json │ │ │ └── Demo2.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── README.md │ ├── stacks-grids-scrollviews/ │ │ ├── demo1/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo10/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo11/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo12/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo13/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo14/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo15/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── singapore.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ └── macOS/ │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo2/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo3/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo4/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo5/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── niagara-falls.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo6/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo7/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo8/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ └── demo9/ │ │ ├── Demo/ │ │ │ ├── Demo.entitlements │ │ │ ├── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ ├── Shared/ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── ContentView.swift │ │ │ │ └── DemoApp.swift │ │ │ ├── iOS/ │ │ │ │ └── Info.plist │ │ │ └── macOS/ │ │ │ ├── Info.plist │ │ │ └── macOS.entitlements │ │ └── README.md │ ├── taps-and-gestures/ │ │ ├── demo1/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ireland.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo2/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── singapore.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo3/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo4/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo5/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo6/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo7/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo8/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ └── demo9/ │ │ ├── Demo/ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ ├── Shared/ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── ContentView.swift │ │ │ │ └── DemoApp.swift │ │ │ ├── iOS/ │ │ │ │ └── Info.plist │ │ │ └── macOS/ │ │ │ ├── Info.plist │ │ │ └── macOS.entitlements │ │ └── README.md │ ├── tooling/ │ │ ├── demo1/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo2/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo3/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo4/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo5/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo6/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo7/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ ├── MySamplePackage/ │ │ │ │ ├── .gitignore │ │ │ │ ├── .swiftpm/ │ │ │ │ │ └── xcode/ │ │ │ │ │ └── package.xcworkspace/ │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Package.swift │ │ │ │ ├── README.md │ │ │ │ ├── Sources/ │ │ │ │ │ └── MySamplePackage/ │ │ │ │ │ └── MySamplePackage.swift │ │ │ │ └── Tests/ │ │ │ │ └── MySamplePackageTests/ │ │ │ │ └── MySamplePackageTests.swift │ │ │ └── README.md │ │ ├── demo8/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ └── demo9/ │ │ ├── Demo/ │ │ │ ├── Demo/ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── ContentView.swift │ │ │ │ ├── DemoApp.swift │ │ │ │ └── Preview Content/ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ └── Contents.json │ │ │ └── Demo.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── README.md │ ├── transforming-views/ │ │ ├── demo1/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo10/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo11/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo12/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo13/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo14/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo15/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── laser-show.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo16/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── dog.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo17/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo18/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── cat.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo19/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo2/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo20/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo21/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo22/ │ │ │ └── README.md │ │ ├── demo3/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo4/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo5/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo6/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo7/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo8/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ └── demo9/ │ │ ├── Demo/ │ │ │ ├── Demo/ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── ContentView.swift │ │ │ │ ├── Demo.entitlements │ │ │ │ ├── DemoApp.swift │ │ │ │ ├── Info.plist │ │ │ │ └── Preview Content/ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ └── Contents.json │ │ │ └── Demo.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── README.md │ ├── user-interface-controls/ │ │ ├── demo1/ │ │ │ └── README.md │ │ ├── demo10/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo11/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo12/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo13/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo14/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo15/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo16/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo17/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo18/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo19/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo2/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── sunset.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo20/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo21/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo22/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo23/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo24/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo25/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo26/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ └── macOS/ │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo27/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ └── macOS/ │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo28/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ └── macOS/ │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo3/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── logo.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo4/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo5/ │ │ │ └── README.md │ │ ├── demo6/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo7/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ ├── demo8/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ └── DemoApp.swift │ │ │ │ ├── iOS/ │ │ │ │ │ └── Info.plist │ │ │ │ └── macOS/ │ │ │ │ ├── Info.plist │ │ │ │ └── macOS.entitlements │ │ │ └── README.md │ │ └── demo9/ │ │ ├── Demo/ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ ├── Shared/ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── ContentView.swift │ │ │ │ └── DemoApp.swift │ │ │ ├── iOS/ │ │ │ │ └── Info.plist │ │ │ └── macOS/ │ │ │ ├── Info.plist │ │ │ └── macOS.entitlements │ │ └── README.md │ ├── view-layout/ │ │ ├── demo1/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo2/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo3/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo4/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo5/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── laser-show.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── Preview Content/ │ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── TossResult.swift │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo6/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo7/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ ├── demo8/ │ │ │ ├── Demo/ │ │ │ │ ├── Demo/ │ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── ContentView.swift │ │ │ │ │ ├── Demo.entitlements │ │ │ │ │ ├── DemoApp.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Preview Content/ │ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── README.md │ │ └── demo9/ │ │ ├── Demo/ │ │ │ ├── Demo/ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── ContentView.swift │ │ │ │ ├── DemoApp.swift │ │ │ │ └── Preview Content/ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ └── Contents.json │ │ │ └── Demo.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── README.md │ └── working-with-static-text/ │ ├── demo1/ │ │ ├── Demo/ │ │ │ ├── Demo/ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── ContentView.swift │ │ │ │ ├── Demo.entitlements │ │ │ │ ├── DemoApp.swift │ │ │ │ ├── Info.plist │ │ │ │ └── Preview Content/ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ └── Contents.json │ │ │ └── Demo.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── README.md │ ├── demo10/ │ │ ├── Demo/ │ │ │ ├── Demo.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ ├── Shared/ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── ContentView.swift │ │ │ │ └── DemoApp.swift │ │ │ └── macOS/ │ │ │ └── macOS.entitlements │ │ └── README.md │ ├── demo11/ │ │ ├── Demo/ │ │ │ ├── Demo/ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── ContentView.swift │ │ │ │ ├── Demo.entitlements │ │ │ │ ├── DemoApp.swift │ │ │ │ └── Preview Content/ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ └── Contents.json │ │ │ └── Demo.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── README.md │ ├── demo12/ │ │ ├── Demo/ │ │ │ ├── Demo/ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── ContentView.swift │ │ │ │ ├── Demo.entitlements │ │ │ │ ├── DemoApp.swift │ │ │ │ └── Preview Content/ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ └── Contents.json │ │ │ └── Demo.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm/ │ │ │ └── Package.resolved │ │ └── README.md │ ├── demo2/ │ │ ├── Demo/ │ │ │ ├── Demo/ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── ContentView.swift │ │ │ │ ├── Demo.entitlements │ │ │ │ ├── DemoApp.swift │ │ │ │ ├── Info.plist │ │ │ │ └── Preview Content/ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ └── Contents.json │ │ │ └── Demo.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── README.md │ ├── demo3/ │ │ ├── Demo/ │ │ │ ├── Demo/ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── ContentView.swift │ │ │ │ ├── Demo.entitlements │ │ │ │ ├── DemoApp.swift │ │ │ │ ├── Info.plist │ │ │ │ └── Preview Content/ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ └── Contents.json │ │ │ └── Demo.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── README.md │ ├── demo4/ │ │ ├── Demo/ │ │ │ ├── Demo/ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── ContentView.swift │ │ │ │ ├── Demo.entitlements │ │ │ │ ├── DemoApp.swift │ │ │ │ ├── Info.plist │ │ │ │ └── Preview Content/ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ └── Contents.json │ │ │ └── Demo.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── README.md │ ├── demo5/ │ │ ├── Demo/ │ │ │ ├── Demo/ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── ContentView.swift │ │ │ │ ├── Demo.entitlements │ │ │ │ ├── DemoApp.swift │ │ │ │ ├── Info.plist │ │ │ │ └── Preview Content/ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ └── Contents.json │ │ │ └── Demo.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── README.md │ ├── demo6/ │ │ ├── Demo/ │ │ │ ├── Demo/ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── ContentView.swift │ │ │ │ ├── Demo.entitlements │ │ │ │ ├── DemoApp.swift │ │ │ │ ├── Info.plist │ │ │ │ └── Preview Content/ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ └── Contents.json │ │ │ └── Demo.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── README.md │ ├── demo7/ │ │ ├── Demo/ │ │ │ ├── Demo/ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── ContentView.swift │ │ │ │ ├── Demo.entitlements │ │ │ │ ├── DemoApp.swift │ │ │ │ ├── Info.plist │ │ │ │ └── Preview Content/ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ └── Contents.json │ │ │ └── Demo.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── README.md │ ├── demo8/ │ │ ├── Demo/ │ │ │ ├── Demo/ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── ContentView.swift │ │ │ │ ├── Demo.entitlements │ │ │ │ ├── DemoApp.swift │ │ │ │ ├── Info.plist │ │ │ │ └── Preview Content/ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ └── Contents.json │ │ │ └── Demo.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── README.md │ └── demo9/ │ ├── Demo/ │ │ ├── Demo/ │ │ │ ├── Assets.xcassets/ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── ContentView.swift │ │ │ ├── Demo.entitlements │ │ │ ├── DemoApp.swift │ │ │ ├── Info.plist │ │ │ └── Preview Content/ │ │ │ └── Preview Assets.xcassets/ │ │ │ └── Contents.json │ │ └── Demo.xcodeproj/ │ │ ├── project.pbxproj │ │ └── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── IDEWorkspaceChecks.plist │ └── README.md ├── idoc.chapters.yml ├── idoc.yml ├── package.json └── renovate.json