├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── Package.swift ├── README.md ├── Sources └── DragGestureKit │ ├── Exemples │ ├── HorizontalDraggableView.swift │ └── VerticalDraggableView.swift │ └── Implementation │ ├── DragHandler.swift │ └── DraggableView.swift └── Tests └── DragGestureKitTests └── DragGestureKitTests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harry-KNIGHT/DragGestureKit/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harry-KNIGHT/DragGestureKit/HEAD/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harry-KNIGHT/DragGestureKit/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harry-KNIGHT/DragGestureKit/HEAD/README.md -------------------------------------------------------------------------------- /Sources/DragGestureKit/Exemples/HorizontalDraggableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harry-KNIGHT/DragGestureKit/HEAD/Sources/DragGestureKit/Exemples/HorizontalDraggableView.swift -------------------------------------------------------------------------------- /Sources/DragGestureKit/Exemples/VerticalDraggableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harry-KNIGHT/DragGestureKit/HEAD/Sources/DragGestureKit/Exemples/VerticalDraggableView.swift -------------------------------------------------------------------------------- /Sources/DragGestureKit/Implementation/DragHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harry-KNIGHT/DragGestureKit/HEAD/Sources/DragGestureKit/Implementation/DragHandler.swift -------------------------------------------------------------------------------- /Sources/DragGestureKit/Implementation/DraggableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harry-KNIGHT/DragGestureKit/HEAD/Sources/DragGestureKit/Implementation/DraggableView.swift -------------------------------------------------------------------------------- /Tests/DragGestureKitTests/DragGestureKitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harry-KNIGHT/DragGestureKit/HEAD/Tests/DragGestureKitTests/DragGestureKitTests.swift --------------------------------------------------------------------------------