├── README.md ├── TransparentChrome.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata └── TransparentChrome ├── AppDelegate.swift ├── Assets.xcassets ├── AccentColor.colorset │ └── Contents.json ├── AppIcon.appiconset │ └── Contents.json └── Contents.json ├── Base.lproj └── LaunchScreen.storyboard ├── BlurredBackgroundRootViewController.swift ├── ContentView.swift ├── Info.plist ├── Preview Content └── Preview Assets.xcassets │ └── Contents.json ├── SceneDelegate.swift └── TransparentChrome.entitlements /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystTransparentChrome/HEAD/README.md -------------------------------------------------------------------------------- /TransparentChrome.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystTransparentChrome/HEAD/TransparentChrome.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TransparentChrome.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystTransparentChrome/HEAD/TransparentChrome.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TransparentChrome/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystTransparentChrome/HEAD/TransparentChrome/AppDelegate.swift -------------------------------------------------------------------------------- /TransparentChrome/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystTransparentChrome/HEAD/TransparentChrome/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /TransparentChrome/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystTransparentChrome/HEAD/TransparentChrome/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TransparentChrome/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystTransparentChrome/HEAD/TransparentChrome/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TransparentChrome/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystTransparentChrome/HEAD/TransparentChrome/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /TransparentChrome/BlurredBackgroundRootViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystTransparentChrome/HEAD/TransparentChrome/BlurredBackgroundRootViewController.swift -------------------------------------------------------------------------------- /TransparentChrome/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystTransparentChrome/HEAD/TransparentChrome/ContentView.swift -------------------------------------------------------------------------------- /TransparentChrome/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystTransparentChrome/HEAD/TransparentChrome/Info.plist -------------------------------------------------------------------------------- /TransparentChrome/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystTransparentChrome/HEAD/TransparentChrome/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TransparentChrome/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystTransparentChrome/HEAD/TransparentChrome/SceneDelegate.swift -------------------------------------------------------------------------------- /TransparentChrome/TransparentChrome.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/CatalystTransparentChrome/HEAD/TransparentChrome/TransparentChrome.entitlements --------------------------------------------------------------------------------