├── .gitignore ├── .swift-version ├── .travis.yml ├── Example ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── VerticalCardSwitcher.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── Pods-VerticalCardSwitcher_Example │ │ ├── Info.plist │ │ ├── Pods-VerticalCardSwitcher_Example-acknowledgements.markdown │ │ ├── Pods-VerticalCardSwitcher_Example-acknowledgements.plist │ │ ├── Pods-VerticalCardSwitcher_Example-dummy.m │ │ ├── Pods-VerticalCardSwitcher_Example-frameworks.sh │ │ ├── Pods-VerticalCardSwitcher_Example-resources.sh │ │ ├── Pods-VerticalCardSwitcher_Example-umbrella.h │ │ ├── Pods-VerticalCardSwitcher_Example.debug.xcconfig │ │ ├── Pods-VerticalCardSwitcher_Example.modulemap │ │ └── Pods-VerticalCardSwitcher_Example.release.xcconfig │ │ ├── Pods-VerticalCardSwitcher_Tests │ │ ├── Info.plist │ │ ├── Pods-VerticalCardSwitcher_Tests-acknowledgements.markdown │ │ ├── Pods-VerticalCardSwitcher_Tests-acknowledgements.plist │ │ ├── Pods-VerticalCardSwitcher_Tests-dummy.m │ │ ├── Pods-VerticalCardSwitcher_Tests-frameworks.sh │ │ ├── Pods-VerticalCardSwitcher_Tests-resources.sh │ │ ├── Pods-VerticalCardSwitcher_Tests-umbrella.h │ │ ├── Pods-VerticalCardSwitcher_Tests.debug.xcconfig │ │ ├── Pods-VerticalCardSwitcher_Tests.modulemap │ │ └── Pods-VerticalCardSwitcher_Tests.release.xcconfig │ │ └── VerticalCardSwitcher │ │ ├── Info.plist │ │ ├── VerticalCardSwitcher-dummy.m │ │ ├── VerticalCardSwitcher-prefix.pch │ │ ├── VerticalCardSwitcher-umbrella.h │ │ ├── VerticalCardSwitcher.modulemap │ │ └── VerticalCardSwitcher.xcconfig ├── Tests │ ├── Info.plist │ └── Tests.swift ├── VerticalCardSwitcher.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── VerticalCardSwitcher-Example.xcscheme ├── VerticalCardSwitcher.xcworkspace │ └── contents.xcworkspacedata └── VerticalCardSwitcher │ ├── AppDelegate.swift │ ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard │ ├── FirstViewController.swift │ ├── Images.xcassets │ ├── 0.imageset │ │ ├── 0.png │ │ └── Contents.json │ ├── 1.imageset │ │ ├── 1.png │ │ └── Contents.json │ ├── 10.imageset │ │ ├── 10.png │ │ └── Contents.json │ ├── 11.imageset │ │ ├── 11.png │ │ └── Contents.json │ ├── 12.imageset │ │ ├── 12.png │ │ └── Contents.json │ ├── 13.imageset │ │ ├── 13.png │ │ └── Contents.json │ ├── 14.imageset │ │ ├── 14.png │ │ └── Contents.json │ ├── 15.imageset │ │ ├── 15.png │ │ └── Contents.json │ ├── 16.imageset │ │ ├── 16.png │ │ └── Contents.json │ ├── 17.imageset │ │ ├── 17.png │ │ └── Contents.json │ ├── 18.imageset │ │ ├── 18.png │ │ └── Contents.json │ ├── 19.imageset │ │ ├── 19.png │ │ └── Contents.json │ ├── 2.imageset │ │ ├── 2.png │ │ └── Contents.json │ ├── 20.imageset │ │ ├── 20.png │ │ └── Contents.json │ ├── 21.imageset │ │ ├── 21.png │ │ └── Contents.json │ ├── 3.imageset │ │ ├── 3.png │ │ └── Contents.json │ ├── 4.imageset │ │ ├── 4.png │ │ └── Contents.json │ ├── 5.imageset │ │ ├── 5.png │ │ └── Contents.json │ ├── 6.imageset │ │ ├── 6.png │ │ └── Contents.json │ ├── 7.imageset │ │ ├── 7.png │ │ └── Contents.json │ ├── 8.imageset │ │ ├── 8.png │ │ └── Contents.json │ ├── 9.imageset │ │ ├── 9.png │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── star.imageset │ │ ├── Contents.json │ │ └── star.png │ ├── Info.plist │ ├── InitialViewController.swift │ └── SecondViewController.swift ├── LICENSE ├── README.md ├── VerticalCardSwitcher.podspec ├── VerticalCardSwitcher ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── CardView.swift │ ├── UtilityExtensions.swift │ ├── VerticalCardSwitcher.swift │ └── VerticalCardSwitcherDelegate.swift ├── _Pods.xcodeproj ├── vertical_card_switcher_example_1.gif └── vertical_card_switcher_example_2.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 3.1 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/VerticalCardSwitcher.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/Pods/Local Podspecs/VerticalCardSwitcher.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-VerticalCardSwitcher_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/Pods/Target Support Files/Pods-VerticalCardSwitcher_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-VerticalCardSwitcher_Example/Pods-VerticalCardSwitcher_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/Pods/Target Support Files/Pods-VerticalCardSwitcher_Example/Pods-VerticalCardSwitcher_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-VerticalCardSwitcher_Example/Pods-VerticalCardSwitcher_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/Pods/Target Support Files/Pods-VerticalCardSwitcher_Example/Pods-VerticalCardSwitcher_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-VerticalCardSwitcher_Example/Pods-VerticalCardSwitcher_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/Pods/Target Support Files/Pods-VerticalCardSwitcher_Example/Pods-VerticalCardSwitcher_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-VerticalCardSwitcher_Example/Pods-VerticalCardSwitcher_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/Pods/Target Support Files/Pods-VerticalCardSwitcher_Example/Pods-VerticalCardSwitcher_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-VerticalCardSwitcher_Example/Pods-VerticalCardSwitcher_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/Pods/Target Support Files/Pods-VerticalCardSwitcher_Example/Pods-VerticalCardSwitcher_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-VerticalCardSwitcher_Example/Pods-VerticalCardSwitcher_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/Pods/Target Support Files/Pods-VerticalCardSwitcher_Example/Pods-VerticalCardSwitcher_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-VerticalCardSwitcher_Example/Pods-VerticalCardSwitcher_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/Pods/Target Support Files/Pods-VerticalCardSwitcher_Example/Pods-VerticalCardSwitcher_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-VerticalCardSwitcher_Example/Pods-VerticalCardSwitcher_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/Pods/Target Support Files/Pods-VerticalCardSwitcher_Example/Pods-VerticalCardSwitcher_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-VerticalCardSwitcher_Example/Pods-VerticalCardSwitcher_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/Pods/Target Support Files/Pods-VerticalCardSwitcher_Example/Pods-VerticalCardSwitcher_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-VerticalCardSwitcher_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/Pods/Target Support Files/Pods-VerticalCardSwitcher_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-VerticalCardSwitcher_Tests/Pods-VerticalCardSwitcher_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/Pods/Target Support Files/Pods-VerticalCardSwitcher_Tests/Pods-VerticalCardSwitcher_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-VerticalCardSwitcher_Tests/Pods-VerticalCardSwitcher_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/Pods/Target Support Files/Pods-VerticalCardSwitcher_Tests/Pods-VerticalCardSwitcher_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-VerticalCardSwitcher_Tests/Pods-VerticalCardSwitcher_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/Pods/Target Support Files/Pods-VerticalCardSwitcher_Tests/Pods-VerticalCardSwitcher_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-VerticalCardSwitcher_Tests/Pods-VerticalCardSwitcher_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/Pods/Target Support Files/Pods-VerticalCardSwitcher_Tests/Pods-VerticalCardSwitcher_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-VerticalCardSwitcher_Tests/Pods-VerticalCardSwitcher_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/Pods/Target Support Files/Pods-VerticalCardSwitcher_Tests/Pods-VerticalCardSwitcher_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-VerticalCardSwitcher_Tests/Pods-VerticalCardSwitcher_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/Pods/Target Support Files/Pods-VerticalCardSwitcher_Tests/Pods-VerticalCardSwitcher_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-VerticalCardSwitcher_Tests/Pods-VerticalCardSwitcher_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/Pods/Target Support Files/Pods-VerticalCardSwitcher_Tests/Pods-VerticalCardSwitcher_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-VerticalCardSwitcher_Tests/Pods-VerticalCardSwitcher_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/Pods/Target Support Files/Pods-VerticalCardSwitcher_Tests/Pods-VerticalCardSwitcher_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-VerticalCardSwitcher_Tests/Pods-VerticalCardSwitcher_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/Pods/Target Support Files/Pods-VerticalCardSwitcher_Tests/Pods-VerticalCardSwitcher_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/VerticalCardSwitcher/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/Pods/Target Support Files/VerticalCardSwitcher/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/VerticalCardSwitcher/VerticalCardSwitcher-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/Pods/Target Support Files/VerticalCardSwitcher/VerticalCardSwitcher-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/VerticalCardSwitcher/VerticalCardSwitcher-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/Pods/Target Support Files/VerticalCardSwitcher/VerticalCardSwitcher-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/VerticalCardSwitcher/VerticalCardSwitcher-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/Pods/Target Support Files/VerticalCardSwitcher/VerticalCardSwitcher-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/VerticalCardSwitcher/VerticalCardSwitcher.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/Pods/Target Support Files/VerticalCardSwitcher/VerticalCardSwitcher.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/VerticalCardSwitcher/VerticalCardSwitcher.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/Pods/Target Support Files/VerticalCardSwitcher/VerticalCardSwitcher.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher.xcodeproj/xcshareddata/xcschemes/VerticalCardSwitcher-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher.xcodeproj/xcshareddata/xcschemes/VerticalCardSwitcher-Example.xcscheme -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/AppDelegate.swift -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/FirstViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/FirstViewController.swift -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/0.imageset/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/0.imageset/0.png -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/0.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/0.imageset/Contents.json -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/1.imageset/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/1.imageset/1.png -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/1.imageset/Contents.json -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/10.imageset/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/10.imageset/10.png -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/10.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/10.imageset/Contents.json -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/11.imageset/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/11.imageset/11.png -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/11.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/11.imageset/Contents.json -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/12.imageset/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/12.imageset/12.png -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/12.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/12.imageset/Contents.json -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/13.imageset/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/13.imageset/13.png -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/13.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/13.imageset/Contents.json -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/14.imageset/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/14.imageset/14.png -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/14.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/14.imageset/Contents.json -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/15.imageset/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/15.imageset/15.png -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/15.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/15.imageset/Contents.json -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/16.imageset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/16.imageset/16.png -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/16.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/16.imageset/Contents.json -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/17.imageset/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/17.imageset/17.png -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/17.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/17.imageset/Contents.json -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/18.imageset/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/18.imageset/18.png -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/18.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/18.imageset/Contents.json -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/19.imageset/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/19.imageset/19.png -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/19.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/19.imageset/Contents.json -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/2.imageset/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/2.imageset/2.png -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/2.imageset/Contents.json -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/20.imageset/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/20.imageset/20.png -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/20.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/20.imageset/Contents.json -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/21.imageset/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/21.imageset/21.png -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/21.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/21.imageset/Contents.json -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/3.imageset/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/3.imageset/3.png -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/3.imageset/Contents.json -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/4.imageset/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/4.imageset/4.png -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/4.imageset/Contents.json -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/5.imageset/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/5.imageset/5.png -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/5.imageset/Contents.json -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/6.imageset/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/6.imageset/6.png -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/6.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/6.imageset/Contents.json -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/7.imageset/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/7.imageset/7.png -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/7.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/7.imageset/Contents.json -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/8.imageset/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/8.imageset/8.png -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/8.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/8.imageset/Contents.json -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/9.imageset/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/9.imageset/9.png -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/9.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/9.imageset/Contents.json -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/star.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/star.imageset/Contents.json -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Images.xcassets/star.imageset/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Images.xcassets/star.imageset/star.png -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/Info.plist -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/InitialViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/InitialViewController.swift -------------------------------------------------------------------------------- /Example/VerticalCardSwitcher/SecondViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/Example/VerticalCardSwitcher/SecondViewController.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/README.md -------------------------------------------------------------------------------- /VerticalCardSwitcher.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/VerticalCardSwitcher.podspec -------------------------------------------------------------------------------- /VerticalCardSwitcher/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /VerticalCardSwitcher/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /VerticalCardSwitcher/Classes/CardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/VerticalCardSwitcher/Classes/CardView.swift -------------------------------------------------------------------------------- /VerticalCardSwitcher/Classes/UtilityExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/VerticalCardSwitcher/Classes/UtilityExtensions.swift -------------------------------------------------------------------------------- /VerticalCardSwitcher/Classes/VerticalCardSwitcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/VerticalCardSwitcher/Classes/VerticalCardSwitcher.swift -------------------------------------------------------------------------------- /VerticalCardSwitcher/Classes/VerticalCardSwitcherDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/VerticalCardSwitcher/Classes/VerticalCardSwitcherDelegate.swift -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /vertical_card_switcher_example_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/vertical_card_switcher_example_1.gif -------------------------------------------------------------------------------- /vertical_card_switcher_example_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatijaKruljac/VerticalCardSwitcher/HEAD/vertical_card_switcher_example_2.gif --------------------------------------------------------------------------------