├── .github └── workflows │ └── main.yml ├── .gitignore ├── Examples ├── OrientationKitDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── OrientationKitDemo │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── ContentView.swift │ ├── HostingController.swift │ ├── Info.plist │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ └── SceneDelegate.swift ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── OrientationKit │ ├── Environment.swift │ ├── Orientation.swift │ ├── OrientationManager.swift │ └── WithOrientations.swift └── Tests ├── LinuxMain.swift └── OrientationKitTests ├── OrientationKitTests.swift └── XCTestManifests.swift /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inamiy/OrientationKit/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inamiy/OrientationKit/HEAD/.gitignore -------------------------------------------------------------------------------- /Examples/OrientationKitDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inamiy/OrientationKit/HEAD/Examples/OrientationKitDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/OrientationKitDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inamiy/OrientationKit/HEAD/Examples/OrientationKitDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/OrientationKitDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inamiy/OrientationKit/HEAD/Examples/OrientationKitDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Examples/OrientationKitDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inamiy/OrientationKit/HEAD/Examples/OrientationKitDemo/AppDelegate.swift -------------------------------------------------------------------------------- /Examples/OrientationKitDemo/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inamiy/OrientationKit/HEAD/Examples/OrientationKitDemo/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Examples/OrientationKitDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inamiy/OrientationKit/HEAD/Examples/OrientationKitDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/OrientationKitDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inamiy/OrientationKit/HEAD/Examples/OrientationKitDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/OrientationKitDemo/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inamiy/OrientationKit/HEAD/Examples/OrientationKitDemo/ContentView.swift -------------------------------------------------------------------------------- /Examples/OrientationKitDemo/HostingController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inamiy/OrientationKit/HEAD/Examples/OrientationKitDemo/HostingController.swift -------------------------------------------------------------------------------- /Examples/OrientationKitDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inamiy/OrientationKit/HEAD/Examples/OrientationKitDemo/Info.plist -------------------------------------------------------------------------------- /Examples/OrientationKitDemo/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inamiy/OrientationKit/HEAD/Examples/OrientationKitDemo/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/OrientationKitDemo/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inamiy/OrientationKit/HEAD/Examples/OrientationKitDemo/SceneDelegate.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inamiy/OrientationKit/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inamiy/OrientationKit/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inamiy/OrientationKit/HEAD/README.md -------------------------------------------------------------------------------- /Sources/OrientationKit/Environment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inamiy/OrientationKit/HEAD/Sources/OrientationKit/Environment.swift -------------------------------------------------------------------------------- /Sources/OrientationKit/Orientation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inamiy/OrientationKit/HEAD/Sources/OrientationKit/Orientation.swift -------------------------------------------------------------------------------- /Sources/OrientationKit/OrientationManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inamiy/OrientationKit/HEAD/Sources/OrientationKit/OrientationManager.swift -------------------------------------------------------------------------------- /Sources/OrientationKit/WithOrientations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inamiy/OrientationKit/HEAD/Sources/OrientationKit/WithOrientations.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inamiy/OrientationKit/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/OrientationKitTests/OrientationKitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inamiy/OrientationKit/HEAD/Tests/OrientationKitTests/OrientationKitTests.swift -------------------------------------------------------------------------------- /Tests/OrientationKitTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inamiy/OrientationKit/HEAD/Tests/OrientationKitTests/XCTestManifests.swift --------------------------------------------------------------------------------