├── .github └── workflows │ └── Checks.yml ├── .gitignore ├── Demo ├── AppDelegate.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ └── LaunchScreen.storyboard ├── Book.swift ├── Extensions.swift ├── Info.plist ├── MatchedTransitionAnimator_BookView.swift ├── SnapshotView.swift └── ViewController.swift ├── LICENSE ├── MatchedTransition.podspec ├── MatchedTransition.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── MatchedTransition.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── MatchedTransition └── MatchedTransitionAnimator.swift ├── Package.swift ├── Podfile ├── Podfile.lock └── README.md /.github/workflows/Checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MatchedTransition/HEAD/.github/workflows/Checks.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MatchedTransition/HEAD/.gitignore -------------------------------------------------------------------------------- /Demo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MatchedTransition/HEAD/Demo/AppDelegate.swift -------------------------------------------------------------------------------- /Demo/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MatchedTransition/HEAD/Demo/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Demo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MatchedTransition/HEAD/Demo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MatchedTransition/HEAD/Demo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Demo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MatchedTransition/HEAD/Demo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Demo/Book.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MatchedTransition/HEAD/Demo/Book.swift -------------------------------------------------------------------------------- /Demo/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MatchedTransition/HEAD/Demo/Extensions.swift -------------------------------------------------------------------------------- /Demo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MatchedTransition/HEAD/Demo/Info.plist -------------------------------------------------------------------------------- /Demo/MatchedTransitionAnimator_BookView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MatchedTransition/HEAD/Demo/MatchedTransitionAnimator_BookView.swift -------------------------------------------------------------------------------- /Demo/SnapshotView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MatchedTransition/HEAD/Demo/SnapshotView.swift -------------------------------------------------------------------------------- /Demo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MatchedTransition/HEAD/Demo/ViewController.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MatchedTransition/HEAD/LICENSE -------------------------------------------------------------------------------- /MatchedTransition.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MatchedTransition/HEAD/MatchedTransition.podspec -------------------------------------------------------------------------------- /MatchedTransition.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MatchedTransition/HEAD/MatchedTransition.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MatchedTransition.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MatchedTransition/HEAD/MatchedTransition.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MatchedTransition.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MatchedTransition/HEAD/MatchedTransition.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /MatchedTransition.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MatchedTransition/HEAD/MatchedTransition.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MatchedTransition.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MatchedTransition/HEAD/MatchedTransition.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /MatchedTransition/MatchedTransitionAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MatchedTransition/HEAD/MatchedTransition/MatchedTransitionAnimator.swift -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MatchedTransition/HEAD/Package.swift -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MatchedTransition/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MatchedTransition/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MatchedTransition/HEAD/README.md --------------------------------------------------------------------------------