├── LICENSE ├── LiquidSwipe.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ ├── markgoldin.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ └── ystrot.xcuserdatad │ │ └── UserInterfaceState.xcuserstate ├── xcshareddata │ └── xcschemes │ │ └── LiquidSwipe.xcscheme └── xcuserdata │ ├── markgoldin.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ └── xcschememanagement.plist │ └── ystrot.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── LiquidSwipe ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ └── LaunchScreen.storyboard ├── Info.plist ├── LiquidSwipeView.swift ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── SceneDelegate.swift ├── SliderData.swift └── WaveView.swift └── README.md /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/LiquidSwipe/HEAD/LICENSE -------------------------------------------------------------------------------- /LiquidSwipe.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/LiquidSwipe/HEAD/LiquidSwipe.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LiquidSwipe.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/LiquidSwipe/HEAD/LiquidSwipe.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /LiquidSwipe.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/LiquidSwipe/HEAD/LiquidSwipe.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /LiquidSwipe.xcodeproj/project.xcworkspace/xcuserdata/markgoldin.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/LiquidSwipe/HEAD/LiquidSwipe.xcodeproj/project.xcworkspace/xcuserdata/markgoldin.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /LiquidSwipe.xcodeproj/project.xcworkspace/xcuserdata/ystrot.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/LiquidSwipe/HEAD/LiquidSwipe.xcodeproj/project.xcworkspace/xcuserdata/ystrot.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /LiquidSwipe.xcodeproj/xcshareddata/xcschemes/LiquidSwipe.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/LiquidSwipe/HEAD/LiquidSwipe.xcodeproj/xcshareddata/xcschemes/LiquidSwipe.xcscheme -------------------------------------------------------------------------------- /LiquidSwipe.xcodeproj/xcuserdata/markgoldin.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/LiquidSwipe/HEAD/LiquidSwipe.xcodeproj/xcuserdata/markgoldin.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /LiquidSwipe.xcodeproj/xcuserdata/markgoldin.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/LiquidSwipe/HEAD/LiquidSwipe.xcodeproj/xcuserdata/markgoldin.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /LiquidSwipe.xcodeproj/xcuserdata/ystrot.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/LiquidSwipe/HEAD/LiquidSwipe.xcodeproj/xcuserdata/ystrot.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /LiquidSwipe/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/LiquidSwipe/HEAD/LiquidSwipe/AppDelegate.swift -------------------------------------------------------------------------------- /LiquidSwipe/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/LiquidSwipe/HEAD/LiquidSwipe/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /LiquidSwipe/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/LiquidSwipe/HEAD/LiquidSwipe/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /LiquidSwipe/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/LiquidSwipe/HEAD/LiquidSwipe/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /LiquidSwipe/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/LiquidSwipe/HEAD/LiquidSwipe/Info.plist -------------------------------------------------------------------------------- /LiquidSwipe/LiquidSwipeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/LiquidSwipe/HEAD/LiquidSwipe/LiquidSwipeView.swift -------------------------------------------------------------------------------- /LiquidSwipe/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/LiquidSwipe/HEAD/LiquidSwipe/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /LiquidSwipe/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/LiquidSwipe/HEAD/LiquidSwipe/SceneDelegate.swift -------------------------------------------------------------------------------- /LiquidSwipe/SliderData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/LiquidSwipe/HEAD/LiquidSwipe/SliderData.swift -------------------------------------------------------------------------------- /LiquidSwipe/WaveView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/LiquidSwipe/HEAD/LiquidSwipe/WaveView.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exyte/LiquidSwipe/HEAD/README.md --------------------------------------------------------------------------------