├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── contents.xcworkspacedata ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── ZoomDragView │ └── ZoomDragView.swift └── Tests └── ZoomDragViewTests └── ZoomDragViewTests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-rocky/ZoomDragView/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-rocky/ZoomDragView/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-rocky/ZoomDragView/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-rocky/ZoomDragView/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-rocky/ZoomDragView/HEAD/README.md -------------------------------------------------------------------------------- /Sources/ZoomDragView/ZoomDragView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-rocky/ZoomDragView/HEAD/Sources/ZoomDragView/ZoomDragView.swift -------------------------------------------------------------------------------- /Tests/ZoomDragViewTests/ZoomDragViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-rocky/ZoomDragView/HEAD/Tests/ZoomDragViewTests/ZoomDragViewTests.swift --------------------------------------------------------------------------------