├── AppDelegate.swift ├── Base.lproj ├── LaunchScreen.xib └── Main.storyboard ├── GGDraggableView.swift ├── GGView.swift ├── Images.xcassets └── AppIcon.appiconset │ └── Contents.json ├── Info.plist ├── README.md └── ViewController.swift /AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericreber/SwiftSwipeCards/HEAD/AppDelegate.swift -------------------------------------------------------------------------------- /Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericreber/SwiftSwipeCards/HEAD/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericreber/SwiftSwipeCards/HEAD/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /GGDraggableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericreber/SwiftSwipeCards/HEAD/GGDraggableView.swift -------------------------------------------------------------------------------- /GGView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericreber/SwiftSwipeCards/HEAD/GGView.swift -------------------------------------------------------------------------------- /Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericreber/SwiftSwipeCards/HEAD/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericreber/SwiftSwipeCards/HEAD/Info.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericreber/SwiftSwipeCards/HEAD/README.md -------------------------------------------------------------------------------- /ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericreber/SwiftSwipeCards/HEAD/ViewController.swift --------------------------------------------------------------------------------