├── .gitignore ├── DemoApp.png ├── DemoApp ├── DemoApp.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── DemoApp.xcscheme └── DemoApp │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Button.imageset │ │ ├── Button.png │ │ ├── Button@2x.png │ │ └── Contents.json │ └── Contents.json │ ├── ContentView.swift │ └── OneFingerRotationGestureDemoApp.swift ├── EXAMPLES.md ├── LICENSE ├── OneFingerRotationGesture.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── swiftpm │ └── Package.resolved ├── Package.swift ├── README.md ├── Sources └── OneFingerRotationGesture │ ├── OneFingerRotationGesture.swift │ └── OneFingerRotationGestureRecognizer.swift └── Tests └── OneFingerRotationGestureTests └── OneFingerRotationGestureTests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melle/OneFingerRotationGesture/HEAD/.gitignore -------------------------------------------------------------------------------- /DemoApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melle/OneFingerRotationGesture/HEAD/DemoApp.png -------------------------------------------------------------------------------- /DemoApp/DemoApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melle/OneFingerRotationGesture/HEAD/DemoApp/DemoApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DemoApp/DemoApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melle/OneFingerRotationGesture/HEAD/DemoApp/DemoApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DemoApp/DemoApp.xcodeproj/xcshareddata/xcschemes/DemoApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melle/OneFingerRotationGesture/HEAD/DemoApp/DemoApp.xcodeproj/xcshareddata/xcschemes/DemoApp.xcscheme -------------------------------------------------------------------------------- /DemoApp/DemoApp/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melle/OneFingerRotationGesture/HEAD/DemoApp/DemoApp/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /DemoApp/DemoApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melle/OneFingerRotationGesture/HEAD/DemoApp/DemoApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /DemoApp/DemoApp/Assets.xcassets/Button.imageset/Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melle/OneFingerRotationGesture/HEAD/DemoApp/DemoApp/Assets.xcassets/Button.imageset/Button.png -------------------------------------------------------------------------------- /DemoApp/DemoApp/Assets.xcassets/Button.imageset/Button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melle/OneFingerRotationGesture/HEAD/DemoApp/DemoApp/Assets.xcassets/Button.imageset/Button@2x.png -------------------------------------------------------------------------------- /DemoApp/DemoApp/Assets.xcassets/Button.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melle/OneFingerRotationGesture/HEAD/DemoApp/DemoApp/Assets.xcassets/Button.imageset/Contents.json -------------------------------------------------------------------------------- /DemoApp/DemoApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melle/OneFingerRotationGesture/HEAD/DemoApp/DemoApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /DemoApp/DemoApp/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melle/OneFingerRotationGesture/HEAD/DemoApp/DemoApp/ContentView.swift -------------------------------------------------------------------------------- /DemoApp/DemoApp/OneFingerRotationGestureDemoApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melle/OneFingerRotationGesture/HEAD/DemoApp/DemoApp/OneFingerRotationGestureDemoApp.swift -------------------------------------------------------------------------------- /EXAMPLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melle/OneFingerRotationGesture/HEAD/EXAMPLES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melle/OneFingerRotationGesture/HEAD/LICENSE -------------------------------------------------------------------------------- /OneFingerRotationGesture.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melle/OneFingerRotationGesture/HEAD/OneFingerRotationGesture.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /OneFingerRotationGesture.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melle/OneFingerRotationGesture/HEAD/OneFingerRotationGesture.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melle/OneFingerRotationGesture/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melle/OneFingerRotationGesture/HEAD/README.md -------------------------------------------------------------------------------- /Sources/OneFingerRotationGesture/OneFingerRotationGesture.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melle/OneFingerRotationGesture/HEAD/Sources/OneFingerRotationGesture/OneFingerRotationGesture.swift -------------------------------------------------------------------------------- /Sources/OneFingerRotationGesture/OneFingerRotationGestureRecognizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melle/OneFingerRotationGesture/HEAD/Sources/OneFingerRotationGesture/OneFingerRotationGestureRecognizer.swift -------------------------------------------------------------------------------- /Tests/OneFingerRotationGestureTests/OneFingerRotationGestureTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melle/OneFingerRotationGesture/HEAD/Tests/OneFingerRotationGestureTests/OneFingerRotationGestureTests.swift --------------------------------------------------------------------------------