├── .gitignore ├── README.md ├── Swipeable Cards ├── Swipeable Cards.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── Swipeable Cards │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Colors │ │ ├── Accent.colorset │ │ │ └── Contents.json │ │ ├── CardShadow.colorset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── PrimaryTextColor.colorset │ │ │ └── Contents.json │ ├── Contents.json │ └── Icons │ │ ├── Contents.json │ │ ├── Empty.imageset │ │ ├── Contents.json │ │ └── Empty@3x.png │ │ ├── Love.imageset │ │ ├── Contents.json │ │ └── Love@3x.png │ │ └── Poop.imageset │ │ ├── Contents.json │ │ └── Poop@3x.png │ ├── CardView.swift │ ├── Colors.swift │ ├── ContentView.swift │ ├── Data.swift │ ├── Extentions.swift │ ├── Info.plist │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ └── SwipeableCardsApp.swift └── demo.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Volorf/swipeable-cards/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Volorf/swipeable-cards/HEAD/README.md -------------------------------------------------------------------------------- /Swipeable Cards/Swipeable Cards.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Volorf/swipeable-cards/HEAD/Swipeable Cards/Swipeable Cards.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Swipeable Cards/Swipeable Cards.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Volorf/swipeable-cards/HEAD/Swipeable Cards/Swipeable Cards.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Swipeable Cards/Swipeable Cards.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Volorf/swipeable-cards/HEAD/Swipeable Cards/Swipeable Cards.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Swipeable Cards/Swipeable Cards/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Volorf/swipeable-cards/HEAD/Swipeable Cards/Swipeable Cards/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Swipeable Cards/Swipeable Cards/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Volorf/swipeable-cards/HEAD/Swipeable Cards/Swipeable Cards/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Swipeable Cards/Swipeable Cards/Assets.xcassets/Colors/Accent.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Volorf/swipeable-cards/HEAD/Swipeable Cards/Swipeable Cards/Assets.xcassets/Colors/Accent.colorset/Contents.json -------------------------------------------------------------------------------- /Swipeable Cards/Swipeable Cards/Assets.xcassets/Colors/CardShadow.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Volorf/swipeable-cards/HEAD/Swipeable Cards/Swipeable Cards/Assets.xcassets/Colors/CardShadow.colorset/Contents.json -------------------------------------------------------------------------------- /Swipeable Cards/Swipeable Cards/Assets.xcassets/Colors/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Volorf/swipeable-cards/HEAD/Swipeable Cards/Swipeable Cards/Assets.xcassets/Colors/Contents.json -------------------------------------------------------------------------------- /Swipeable Cards/Swipeable Cards/Assets.xcassets/Colors/PrimaryTextColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Volorf/swipeable-cards/HEAD/Swipeable Cards/Swipeable Cards/Assets.xcassets/Colors/PrimaryTextColor.colorset/Contents.json -------------------------------------------------------------------------------- /Swipeable Cards/Swipeable Cards/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Volorf/swipeable-cards/HEAD/Swipeable Cards/Swipeable Cards/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Swipeable Cards/Swipeable Cards/Assets.xcassets/Icons/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Volorf/swipeable-cards/HEAD/Swipeable Cards/Swipeable Cards/Assets.xcassets/Icons/Contents.json -------------------------------------------------------------------------------- /Swipeable Cards/Swipeable Cards/Assets.xcassets/Icons/Empty.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Volorf/swipeable-cards/HEAD/Swipeable Cards/Swipeable Cards/Assets.xcassets/Icons/Empty.imageset/Contents.json -------------------------------------------------------------------------------- /Swipeable Cards/Swipeable Cards/Assets.xcassets/Icons/Empty.imageset/Empty@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Volorf/swipeable-cards/HEAD/Swipeable Cards/Swipeable Cards/Assets.xcassets/Icons/Empty.imageset/Empty@3x.png -------------------------------------------------------------------------------- /Swipeable Cards/Swipeable Cards/Assets.xcassets/Icons/Love.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Volorf/swipeable-cards/HEAD/Swipeable Cards/Swipeable Cards/Assets.xcassets/Icons/Love.imageset/Contents.json -------------------------------------------------------------------------------- /Swipeable Cards/Swipeable Cards/Assets.xcassets/Icons/Love.imageset/Love@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Volorf/swipeable-cards/HEAD/Swipeable Cards/Swipeable Cards/Assets.xcassets/Icons/Love.imageset/Love@3x.png -------------------------------------------------------------------------------- /Swipeable Cards/Swipeable Cards/Assets.xcassets/Icons/Poop.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Volorf/swipeable-cards/HEAD/Swipeable Cards/Swipeable Cards/Assets.xcassets/Icons/Poop.imageset/Contents.json -------------------------------------------------------------------------------- /Swipeable Cards/Swipeable Cards/Assets.xcassets/Icons/Poop.imageset/Poop@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Volorf/swipeable-cards/HEAD/Swipeable Cards/Swipeable Cards/Assets.xcassets/Icons/Poop.imageset/Poop@3x.png -------------------------------------------------------------------------------- /Swipeable Cards/Swipeable Cards/CardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Volorf/swipeable-cards/HEAD/Swipeable Cards/Swipeable Cards/CardView.swift -------------------------------------------------------------------------------- /Swipeable Cards/Swipeable Cards/Colors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Volorf/swipeable-cards/HEAD/Swipeable Cards/Swipeable Cards/Colors.swift -------------------------------------------------------------------------------- /Swipeable Cards/Swipeable Cards/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Volorf/swipeable-cards/HEAD/Swipeable Cards/Swipeable Cards/ContentView.swift -------------------------------------------------------------------------------- /Swipeable Cards/Swipeable Cards/Data.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Volorf/swipeable-cards/HEAD/Swipeable Cards/Swipeable Cards/Data.swift -------------------------------------------------------------------------------- /Swipeable Cards/Swipeable Cards/Extentions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Volorf/swipeable-cards/HEAD/Swipeable Cards/Swipeable Cards/Extentions.swift -------------------------------------------------------------------------------- /Swipeable Cards/Swipeable Cards/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Volorf/swipeable-cards/HEAD/Swipeable Cards/Swipeable Cards/Info.plist -------------------------------------------------------------------------------- /Swipeable Cards/Swipeable Cards/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Volorf/swipeable-cards/HEAD/Swipeable Cards/Swipeable Cards/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Swipeable Cards/Swipeable Cards/SwipeableCardsApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Volorf/swipeable-cards/HEAD/Swipeable Cards/Swipeable Cards/SwipeableCardsApp.swift -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Volorf/swipeable-cards/HEAD/demo.gif --------------------------------------------------------------------------------