├── .gitignore ├── .swiftpm └── xcode │ ├── package.xcworkspace │ └── contents.xcworkspacedata │ └── xcshareddata │ └── xcschemes │ └── MGFlipView.xcscheme ├── Examples ├── IOSExample │ ├── IOSExample.xcodeproj │ │ └── project.pbxproj │ └── IOSExample │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── ContentView.swift │ │ ├── IOSExampleApp.swift │ │ ├── Info.plist │ │ └── Preview Content │ │ └── Preview Assets.xcassets │ │ └── Contents.json ├── MacOSExample │ ├── MacOSExample.xcodeproj │ │ └── project.pbxproj │ └── MacOSExample │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ └── Main.storyboard │ │ ├── ContentView.swift │ │ ├── Info.plist │ │ ├── MacOSExample.entitlements │ │ └── Preview Content │ │ └── Preview Assets.xcassets │ │ └── Contents.json ├── Package.swift ├── TvOSExample │ ├── TvOSExample.xcodeproj │ │ └── project.pbxproj │ └── TvOSExample │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── App Icon & Top Shelf Image.brandassets │ │ │ ├── App Icon - App Store.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ ├── App Icon.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Top Shelf Image Wide.imageset │ │ │ │ └── Contents.json │ │ │ └── Top Shelf Image.imageset │ │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── ContentView.swift │ │ ├── Info.plist │ │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ │ └── TvOSExampleApp.swift ├── WatchOSExample │ ├── WatchOSExample WatchKit App │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ └── Info.plist │ ├── WatchOSExample WatchKit Extension │ │ ├── Assets.xcassets │ │ │ ├── Complication.complicationset │ │ │ │ ├── Circular.imageset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Extra Large.imageset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Graphic Bezel.imageset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Graphic Circular.imageset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Graphic Corner.imageset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Graphic Extra Large.imageset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Graphic Large Rectangular.imageset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Modular.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Utilitarian.imageset │ │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── ComplicationController.swift │ │ ├── ContentView.swift │ │ ├── Info.plist │ │ ├── Preview Content │ │ │ └── Preview Assets.xcassets │ │ │ │ └── Contents.json │ │ └── WatchOSExampleApp.swift │ └── WatchOSExample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ └── xcschemes │ │ ├── WatchOSExample WatchKit App (Complication).xcscheme │ │ └── WatchOSExample WatchKit App.xcscheme └── flip_view_example.gif ├── LICENSE ├── MGFlipView.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── Package.swift ├── README.md ├── Sources └── MGFlipView │ ├── AnimationDescription.swift │ ├── AnimationType.swift │ ├── FlipAxis.swift │ └── FlipView.swift └── Tests ├── LinuxMain.swift └── MGFlipViewTests ├── FlipViewTests.swift └── XCTestManifests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/MGFlipView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/MGFlipView.xcscheme -------------------------------------------------------------------------------- /Examples/IOSExample/IOSExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/IOSExample/IOSExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/IOSExample/IOSExample/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/IOSExample/IOSExample/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Examples/IOSExample/IOSExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/IOSExample/IOSExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/IOSExample/IOSExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/IOSExample/IOSExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/IOSExample/IOSExample/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/IOSExample/IOSExample/ContentView.swift -------------------------------------------------------------------------------- /Examples/IOSExample/IOSExample/IOSExampleApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/IOSExample/IOSExample/IOSExampleApp.swift -------------------------------------------------------------------------------- /Examples/IOSExample/IOSExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/IOSExample/IOSExample/Info.plist -------------------------------------------------------------------------------- /Examples/IOSExample/IOSExample/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/IOSExample/IOSExample/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/MacOSExample/MacOSExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/MacOSExample/MacOSExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/MacOSExample/MacOSExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/MacOSExample/MacOSExample/AppDelegate.swift -------------------------------------------------------------------------------- /Examples/MacOSExample/MacOSExample/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/MacOSExample/MacOSExample/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Examples/MacOSExample/MacOSExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/MacOSExample/MacOSExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/MacOSExample/MacOSExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/MacOSExample/MacOSExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/MacOSExample/MacOSExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/MacOSExample/MacOSExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Examples/MacOSExample/MacOSExample/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/MacOSExample/MacOSExample/ContentView.swift -------------------------------------------------------------------------------- /Examples/MacOSExample/MacOSExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/MacOSExample/MacOSExample/Info.plist -------------------------------------------------------------------------------- /Examples/MacOSExample/MacOSExample/MacOSExample.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/MacOSExample/MacOSExample/MacOSExample.entitlements -------------------------------------------------------------------------------- /Examples/MacOSExample/MacOSExample/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/MacOSExample/MacOSExample/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/Package.swift -------------------------------------------------------------------------------- /Examples/TvOSExample/TvOSExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/TvOSExample/TvOSExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/TvOSExample/TvOSExample/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/TvOSExample/TvOSExample/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Examples/TvOSExample/TvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/TvOSExample/TvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/TvOSExample/TvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/TvOSExample/TvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Examples/TvOSExample/TvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/TvOSExample/TvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Contents.json -------------------------------------------------------------------------------- /Examples/TvOSExample/TvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/TvOSExample/TvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/TvOSExample/TvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/TvOSExample/TvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Examples/TvOSExample/TvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/TvOSExample/TvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/TvOSExample/TvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/TvOSExample/TvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Examples/TvOSExample/TvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/TvOSExample/TvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/TvOSExample/TvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/TvOSExample/TvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Examples/TvOSExample/TvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/TvOSExample/TvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Contents.json -------------------------------------------------------------------------------- /Examples/TvOSExample/TvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/TvOSExample/TvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/TvOSExample/TvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/TvOSExample/TvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Examples/TvOSExample/TvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/TvOSExample/TvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/TvOSExample/TvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/TvOSExample/TvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Examples/TvOSExample/TvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/TvOSExample/TvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json -------------------------------------------------------------------------------- /Examples/TvOSExample/TvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/TvOSExample/TvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/TvOSExample/TvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/TvOSExample/TvOSExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/TvOSExample/TvOSExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/TvOSExample/TvOSExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/TvOSExample/TvOSExample/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/TvOSExample/TvOSExample/ContentView.swift -------------------------------------------------------------------------------- /Examples/TvOSExample/TvOSExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/TvOSExample/TvOSExample/Info.plist -------------------------------------------------------------------------------- /Examples/TvOSExample/TvOSExample/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/TvOSExample/TvOSExample/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/TvOSExample/TvOSExample/TvOSExampleApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/TvOSExample/TvOSExample/TvOSExampleApp.swift -------------------------------------------------------------------------------- /Examples/WatchOSExample/WatchOSExample WatchKit App/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/WatchOSExample/WatchOSExample WatchKit App/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Examples/WatchOSExample/WatchOSExample WatchKit App/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/WatchOSExample/WatchOSExample WatchKit App/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/WatchOSExample/WatchOSExample WatchKit App/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/WatchOSExample/WatchOSExample WatchKit App/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/WatchOSExample/WatchOSExample WatchKit App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/WatchOSExample/WatchOSExample WatchKit App/Info.plist -------------------------------------------------------------------------------- /Examples/WatchOSExample/WatchOSExample WatchKit Extension/Assets.xcassets/Complication.complicationset/Circular.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/WatchOSExample/WatchOSExample WatchKit Extension/Assets.xcassets/Complication.complicationset/Circular.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/WatchOSExample/WatchOSExample WatchKit Extension/Assets.xcassets/Complication.complicationset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/WatchOSExample/WatchOSExample WatchKit Extension/Assets.xcassets/Complication.complicationset/Contents.json -------------------------------------------------------------------------------- /Examples/WatchOSExample/WatchOSExample WatchKit Extension/Assets.xcassets/Complication.complicationset/Extra Large.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/WatchOSExample/WatchOSExample WatchKit Extension/Assets.xcassets/Complication.complicationset/Extra Large.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/WatchOSExample/WatchOSExample WatchKit Extension/Assets.xcassets/Complication.complicationset/Graphic Bezel.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/WatchOSExample/WatchOSExample WatchKit Extension/Assets.xcassets/Complication.complicationset/Graphic Bezel.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/WatchOSExample/WatchOSExample WatchKit Extension/Assets.xcassets/Complication.complicationset/Graphic Circular.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/WatchOSExample/WatchOSExample WatchKit Extension/Assets.xcassets/Complication.complicationset/Graphic Circular.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/WatchOSExample/WatchOSExample WatchKit Extension/Assets.xcassets/Complication.complicationset/Graphic Corner.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/WatchOSExample/WatchOSExample WatchKit Extension/Assets.xcassets/Complication.complicationset/Graphic Corner.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/WatchOSExample/WatchOSExample WatchKit Extension/Assets.xcassets/Complication.complicationset/Graphic Extra Large.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/WatchOSExample/WatchOSExample WatchKit Extension/Assets.xcassets/Complication.complicationset/Graphic Extra Large.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/WatchOSExample/WatchOSExample WatchKit Extension/Assets.xcassets/Complication.complicationset/Graphic Large Rectangular.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/WatchOSExample/WatchOSExample WatchKit Extension/Assets.xcassets/Complication.complicationset/Graphic Large Rectangular.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/WatchOSExample/WatchOSExample WatchKit Extension/Assets.xcassets/Complication.complicationset/Modular.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/WatchOSExample/WatchOSExample WatchKit Extension/Assets.xcassets/Complication.complicationset/Modular.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/WatchOSExample/WatchOSExample WatchKit Extension/Assets.xcassets/Complication.complicationset/Utilitarian.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/WatchOSExample/WatchOSExample WatchKit Extension/Assets.xcassets/Complication.complicationset/Utilitarian.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/WatchOSExample/WatchOSExample WatchKit Extension/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/WatchOSExample/WatchOSExample WatchKit Extension/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/WatchOSExample/WatchOSExample WatchKit Extension/ComplicationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/WatchOSExample/WatchOSExample WatchKit Extension/ComplicationController.swift -------------------------------------------------------------------------------- /Examples/WatchOSExample/WatchOSExample WatchKit Extension/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/WatchOSExample/WatchOSExample WatchKit Extension/ContentView.swift -------------------------------------------------------------------------------- /Examples/WatchOSExample/WatchOSExample WatchKit Extension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/WatchOSExample/WatchOSExample WatchKit Extension/Info.plist -------------------------------------------------------------------------------- /Examples/WatchOSExample/WatchOSExample WatchKit Extension/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/WatchOSExample/WatchOSExample WatchKit Extension/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/WatchOSExample/WatchOSExample WatchKit Extension/WatchOSExampleApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/WatchOSExample/WatchOSExample WatchKit Extension/WatchOSExampleApp.swift -------------------------------------------------------------------------------- /Examples/WatchOSExample/WatchOSExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/WatchOSExample/WatchOSExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/WatchOSExample/WatchOSExample.xcodeproj/xcshareddata/xcschemes/WatchOSExample WatchKit App (Complication).xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/WatchOSExample/WatchOSExample.xcodeproj/xcshareddata/xcschemes/WatchOSExample WatchKit App (Complication).xcscheme -------------------------------------------------------------------------------- /Examples/WatchOSExample/WatchOSExample.xcodeproj/xcshareddata/xcschemes/WatchOSExample WatchKit App.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/WatchOSExample/WatchOSExample.xcodeproj/xcshareddata/xcschemes/WatchOSExample WatchKit App.xcscheme -------------------------------------------------------------------------------- /Examples/flip_view_example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Examples/flip_view_example.gif -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/LICENSE -------------------------------------------------------------------------------- /MGFlipView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/MGFlipView.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MGFlipView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/MGFlipView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/README.md -------------------------------------------------------------------------------- /Sources/MGFlipView/AnimationDescription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Sources/MGFlipView/AnimationDescription.swift -------------------------------------------------------------------------------- /Sources/MGFlipView/AnimationType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Sources/MGFlipView/AnimationType.swift -------------------------------------------------------------------------------- /Sources/MGFlipView/FlipAxis.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Sources/MGFlipView/FlipAxis.swift -------------------------------------------------------------------------------- /Sources/MGFlipView/FlipView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Sources/MGFlipView/FlipView.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/MGFlipViewTests/FlipViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Tests/MGFlipViewTests/FlipViewTests.swift -------------------------------------------------------------------------------- /Tests/MGFlipViewTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaprogramiacz/MGFlipView/HEAD/Tests/MGFlipViewTests/XCTestManifests.swift --------------------------------------------------------------------------------