├── .gitattributes ├── .gitignore ├── .npmignore ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── LICENSE ├── MerryPhotoViewer.podspec ├── PhotoViewerExample ├── .buckconfig ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── App.js ├── __tests__ │ └── App-test.js ├── android │ ├── app │ │ ├── _BUCK │ │ ├── build.gradle │ │ ├── build_defs.bzl │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── photoviewerexample │ │ │ │ └── ReactNativeFlipper.java │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── photoviewerexample │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── app.json ├── babel.config.js ├── cat-2575694_1920.jpg ├── index.js ├── ios │ ├── PhotoViewerExample-tvOS │ │ └── Info.plist │ ├── PhotoViewerExample-tvOSTests │ │ └── Info.plist │ ├── PhotoViewerExample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── PhotoViewerExample-tvOS.xcscheme │ │ │ └── PhotoViewerExample.xcscheme │ ├── PhotoViewerExample.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── PhotoViewerExample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── main.m │ ├── PhotoViewerExampleTests │ │ ├── Info.plist │ │ └── PhotoViewerExampleTests.m │ ├── Podfile │ └── Podfile.lock ├── metro.config.js ├── package.json └── yarn.lock ├── README.md ├── android ├── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ ├── merryjs │ │ └── PhotoViewer │ │ │ ├── CircleProgressBarDrawable.java │ │ │ ├── MerryPhotoData.java │ │ │ ├── MerryPhotoOverlay.java │ │ │ ├── MerryPhotoView.java │ │ │ ├── MerryPhotoViewManager.java │ │ │ ├── MerryPhotoViewPackage.java │ │ │ └── Utils.java │ │ └── stfalcon │ │ └── frescoimageviewer │ │ ├── AnimationUtils.java │ │ ├── ImageViewer.java │ │ ├── ImageViewerAdapter.java │ │ ├── ImageViewerView.java │ │ ├── MultiTouchViewPager.java │ │ ├── OnDismissListener.java │ │ ├── SwipeDirectionDetector.java │ │ ├── SwipeToDismissListener.java │ │ ├── adapter │ │ ├── RecyclingPagerAdapter.java │ │ └── ViewHolder.java │ │ └── drawee │ │ ├── NonInterceptableAttacher.java │ │ └── ZoomableDraweeView.java │ └── res │ ├── drawable │ └── close_button_x.png │ ├── layout │ ├── image_viewer.xml │ └── photo_viewer_overlay.xml │ └── values │ ├── color.xml │ ├── strings.xml │ └── styles.xml ├── assets ├── 20170728-110148@2x.png ├── android.gif └── preview.gif ├── docs ├── assets │ ├── css │ │ ├── main.css │ │ └── main.css.map │ ├── images │ │ ├── icons.png │ │ ├── icons@2x.png │ │ ├── widgets.png │ │ └── widgets@2x.png │ └── js │ │ ├── main.js │ │ └── search.js ├── classes │ └── merryphotoview.html ├── index.html └── interfaces │ ├── merryphotoviewporps.html │ └── photo.html ├── index.d.ts ├── index.js ├── index.tsx ├── ios ├── Cartfile ├── Cartfile.resolved ├── Carthage │ └── Build │ │ ├── .FLAnimatedImage.version │ │ ├── .NYTPhotoViewer.version │ │ └── iOS │ │ ├── 0A4229EF-BD62-3DA8-998B-20D37E9CD3FC.bcsymbolmap │ │ ├── 0B24CA97-E3FB-3CCF-AD83-23A6B2640A82.bcsymbolmap │ │ ├── 2D231A10-BFF0-361C-B2C3-F1E2FAE04532.bcsymbolmap │ │ ├── 50BBFB41-823A-3B4F-B73B-8FE2606997D0.bcsymbolmap │ │ ├── 5387A9F9-F51B-393F-B2F3-58F0C068E191.bcsymbolmap │ │ ├── 67E67408-38C3-34BD-A84D-509FDAC31832.bcsymbolmap │ │ ├── 7FAA3CCE-9C9A-3F2C-BDD0-A2281C693F1D.bcsymbolmap │ │ ├── 88284DB7-60BD-31D9-8966-144E363FD4B9.bcsymbolmap │ │ ├── 89E8CF33-A7AE-3479-93F1-0209D854F0E2.bcsymbolmap │ │ ├── A12C533B-7944-377F-BF64-C9798A374741.bcsymbolmap │ │ ├── A2EC9B3A-4871-3BF8-8EBD-56F473332312.bcsymbolmap │ │ ├── ABC91C93-CD09-322E-8E43-BCB7E3DEF58A.bcsymbolmap │ │ ├── D46ECA18-AF97-3723-8281-3156BB5C988C.bcsymbolmap │ │ ├── D84BB03A-640B-3204-B552-EC0E977884C3.bcsymbolmap │ │ ├── E1B4C4B3-7D19-3843-8674-560E71CEC010.bcsymbolmap │ │ ├── EBE23784-8242-33CD-BDCB-4558CB207995.bcsymbolmap │ │ ├── FLAnimatedImage.framework.dSYM │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── FLAnimatedImage │ │ ├── FLAnimatedImage.framework │ │ ├── FLAnimatedImage │ │ ├── Headers │ │ │ ├── FLAnimatedImage.h │ │ │ └── FLAnimatedImageView.h │ │ ├── Info.plist │ │ └── Modules │ │ │ └── module.modulemap │ │ ├── NYTPhotoViewer.framework.dSYM │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── NYTPhotoViewer │ │ ├── NYTPhotoViewer.framework │ │ ├── Headers │ │ │ ├── NSBundle+NYTPhotoViewer.h │ │ │ ├── NYTPhoto.h │ │ │ ├── NYTPhotoCaptionView.h │ │ │ ├── NYTPhotoCaptionViewLayoutWidthHinting.h │ │ │ ├── NYTPhotoContainer.h │ │ │ ├── NYTPhotoDismissalInteractionController.h │ │ │ ├── NYTPhotoTransitionAnimator.h │ │ │ ├── NYTPhotoTransitionController.h │ │ │ ├── NYTPhotoViewController.h │ │ │ ├── NYTPhotoViewer.h │ │ │ ├── NYTPhotoViewerArrayDataSource.h │ │ │ ├── NYTPhotoViewerDataSource.h │ │ │ ├── NYTPhotoViewerSinglePhotoDataSource.h │ │ │ ├── NYTPhotosOverlayView.h │ │ │ ├── NYTPhotosViewController.h │ │ │ └── NYTScalingImageView.h │ │ ├── Info.plist │ │ ├── Modules │ │ │ └── module.modulemap │ │ ├── NYTPhotoViewer │ │ └── NYTPhotoViewer.bundle │ │ │ ├── NYTPhotoViewerCloseButtonX.png │ │ │ ├── NYTPhotoViewerCloseButtonX@2x.png │ │ │ ├── NYTPhotoViewerCloseButtonX@3x.png │ │ │ ├── NYTPhotoViewerCloseButtonXLandscape.png │ │ │ ├── NYTPhotoViewerCloseButtonXLandscape@2x.png │ │ │ └── NYTPhotoViewerCloseButtonXLandscape@3x.png │ │ ├── NYTPhotoViewerCore.framework.dSYM │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── NYTPhotoViewerCore │ │ └── NYTPhotoViewerCore.framework │ │ ├── Headers │ │ ├── NSBundle+NYTPhotoViewer.h │ │ ├── NYTPhoto.h │ │ ├── NYTPhotoCaptionView.h │ │ ├── NYTPhotoCaptionViewLayoutWidthHinting.h │ │ ├── NYTPhotoContainer.h │ │ ├── NYTPhotoDismissalInteractionController.h │ │ ├── NYTPhotoTransitionAnimator.h │ │ ├── NYTPhotoTransitionController.h │ │ ├── NYTPhotoViewController.h │ │ ├── NYTPhotoViewerArrayDataSource.h │ │ ├── NYTPhotoViewerCore.h │ │ ├── NYTPhotoViewerDataSource.h │ │ ├── NYTPhotoViewerSinglePhotoDataSource.h │ │ ├── NYTPhotosOverlayView.h │ │ ├── NYTPhotosViewController.h │ │ └── NYTScalingImageView.h │ │ ├── Info.plist │ │ ├── Modules │ │ └── module.modulemap │ │ ├── NYTPhotoViewer.bundle │ │ ├── NYTPhotoViewerCloseButtonX.png │ │ ├── NYTPhotoViewerCloseButtonX@2x.png │ │ ├── NYTPhotoViewerCloseButtonX@3x.png │ │ ├── NYTPhotoViewerCloseButtonXLandscape.png │ │ ├── NYTPhotoViewerCloseButtonXLandscape@2x.png │ │ └── NYTPhotoViewerCloseButtonXLandscape@3x.png │ │ └── NYTPhotoViewerCore ├── MerryCommonHeader.h ├── MerryPhoto.h ├── MerryPhoto.m ├── MerryPhotoData.h ├── MerryPhotoData.m ├── MerryPhotoView.h ├── MerryPhotoView.m ├── MerryPhotoViewManager.h ├── MerryPhotoViewManager.m └── MerryPhotoViewer.xcodeproj │ └── project.pbxproj ├── package.json ├── tsconfig.json └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/.npmignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/LICENSE -------------------------------------------------------------------------------- /MerryPhotoViewer.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/MerryPhotoViewer.podspec -------------------------------------------------------------------------------- /PhotoViewerExample/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/.buckconfig -------------------------------------------------------------------------------- /PhotoViewerExample/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /PhotoViewerExample/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/.flowconfig -------------------------------------------------------------------------------- /PhotoViewerExample/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /PhotoViewerExample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/.gitignore -------------------------------------------------------------------------------- /PhotoViewerExample/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/.prettierrc.js -------------------------------------------------------------------------------- /PhotoViewerExample/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /PhotoViewerExample/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/App.js -------------------------------------------------------------------------------- /PhotoViewerExample/__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/__tests__/App-test.js -------------------------------------------------------------------------------- /PhotoViewerExample/android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/android/app/_BUCK -------------------------------------------------------------------------------- /PhotoViewerExample/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/android/app/build.gradle -------------------------------------------------------------------------------- /PhotoViewerExample/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/android/app/build_defs.bzl -------------------------------------------------------------------------------- /PhotoViewerExample/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/android/app/debug.keystore -------------------------------------------------------------------------------- /PhotoViewerExample/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /PhotoViewerExample/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /PhotoViewerExample/android/app/src/debug/java/com/photoviewerexample/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/android/app/src/debug/java/com/photoviewerexample/ReactNativeFlipper.java -------------------------------------------------------------------------------- /PhotoViewerExample/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /PhotoViewerExample/android/app/src/main/java/com/photoviewerexample/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/android/app/src/main/java/com/photoviewerexample/MainActivity.java -------------------------------------------------------------------------------- /PhotoViewerExample/android/app/src/main/java/com/photoviewerexample/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/android/app/src/main/java/com/photoviewerexample/MainApplication.java -------------------------------------------------------------------------------- /PhotoViewerExample/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /PhotoViewerExample/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /PhotoViewerExample/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /PhotoViewerExample/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /PhotoViewerExample/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /PhotoViewerExample/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /PhotoViewerExample/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /PhotoViewerExample/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /PhotoViewerExample/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /PhotoViewerExample/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /PhotoViewerExample/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /PhotoViewerExample/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /PhotoViewerExample/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/android/build.gradle -------------------------------------------------------------------------------- /PhotoViewerExample/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/android/gradle.properties -------------------------------------------------------------------------------- /PhotoViewerExample/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /PhotoViewerExample/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /PhotoViewerExample/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/android/gradlew -------------------------------------------------------------------------------- /PhotoViewerExample/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/android/gradlew.bat -------------------------------------------------------------------------------- /PhotoViewerExample/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/android/settings.gradle -------------------------------------------------------------------------------- /PhotoViewerExample/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/app.json -------------------------------------------------------------------------------- /PhotoViewerExample/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/babel.config.js -------------------------------------------------------------------------------- /PhotoViewerExample/cat-2575694_1920.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/cat-2575694_1920.jpg -------------------------------------------------------------------------------- /PhotoViewerExample/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/index.js -------------------------------------------------------------------------------- /PhotoViewerExample/ios/PhotoViewerExample-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/ios/PhotoViewerExample-tvOS/Info.plist -------------------------------------------------------------------------------- /PhotoViewerExample/ios/PhotoViewerExample-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/ios/PhotoViewerExample-tvOSTests/Info.plist -------------------------------------------------------------------------------- /PhotoViewerExample/ios/PhotoViewerExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/ios/PhotoViewerExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PhotoViewerExample/ios/PhotoViewerExample.xcodeproj/xcshareddata/xcschemes/PhotoViewerExample-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/ios/PhotoViewerExample.xcodeproj/xcshareddata/xcschemes/PhotoViewerExample-tvOS.xcscheme -------------------------------------------------------------------------------- /PhotoViewerExample/ios/PhotoViewerExample.xcodeproj/xcshareddata/xcschemes/PhotoViewerExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/ios/PhotoViewerExample.xcodeproj/xcshareddata/xcschemes/PhotoViewerExample.xcscheme -------------------------------------------------------------------------------- /PhotoViewerExample/ios/PhotoViewerExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/ios/PhotoViewerExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PhotoViewerExample/ios/PhotoViewerExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/ios/PhotoViewerExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /PhotoViewerExample/ios/PhotoViewerExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/ios/PhotoViewerExample/AppDelegate.h -------------------------------------------------------------------------------- /PhotoViewerExample/ios/PhotoViewerExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/ios/PhotoViewerExample/AppDelegate.m -------------------------------------------------------------------------------- /PhotoViewerExample/ios/PhotoViewerExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/ios/PhotoViewerExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /PhotoViewerExample/ios/PhotoViewerExample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/ios/PhotoViewerExample/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /PhotoViewerExample/ios/PhotoViewerExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/ios/PhotoViewerExample/Info.plist -------------------------------------------------------------------------------- /PhotoViewerExample/ios/PhotoViewerExample/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/ios/PhotoViewerExample/LaunchScreen.storyboard -------------------------------------------------------------------------------- /PhotoViewerExample/ios/PhotoViewerExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/ios/PhotoViewerExample/main.m -------------------------------------------------------------------------------- /PhotoViewerExample/ios/PhotoViewerExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/ios/PhotoViewerExampleTests/Info.plist -------------------------------------------------------------------------------- /PhotoViewerExample/ios/PhotoViewerExampleTests/PhotoViewerExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/ios/PhotoViewerExampleTests/PhotoViewerExampleTests.m -------------------------------------------------------------------------------- /PhotoViewerExample/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/ios/Podfile -------------------------------------------------------------------------------- /PhotoViewerExample/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/ios/Podfile.lock -------------------------------------------------------------------------------- /PhotoViewerExample/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/metro.config.js -------------------------------------------------------------------------------- /PhotoViewerExample/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/package.json -------------------------------------------------------------------------------- /PhotoViewerExample/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/PhotoViewerExample/yarn.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/README.md -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/java/com/merryjs/PhotoViewer/CircleProgressBarDrawable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/android/src/main/java/com/merryjs/PhotoViewer/CircleProgressBarDrawable.java -------------------------------------------------------------------------------- /android/src/main/java/com/merryjs/PhotoViewer/MerryPhotoData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/android/src/main/java/com/merryjs/PhotoViewer/MerryPhotoData.java -------------------------------------------------------------------------------- /android/src/main/java/com/merryjs/PhotoViewer/MerryPhotoOverlay.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/android/src/main/java/com/merryjs/PhotoViewer/MerryPhotoOverlay.java -------------------------------------------------------------------------------- /android/src/main/java/com/merryjs/PhotoViewer/MerryPhotoView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/android/src/main/java/com/merryjs/PhotoViewer/MerryPhotoView.java -------------------------------------------------------------------------------- /android/src/main/java/com/merryjs/PhotoViewer/MerryPhotoViewManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/android/src/main/java/com/merryjs/PhotoViewer/MerryPhotoViewManager.java -------------------------------------------------------------------------------- /android/src/main/java/com/merryjs/PhotoViewer/MerryPhotoViewPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/android/src/main/java/com/merryjs/PhotoViewer/MerryPhotoViewPackage.java -------------------------------------------------------------------------------- /android/src/main/java/com/merryjs/PhotoViewer/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/android/src/main/java/com/merryjs/PhotoViewer/Utils.java -------------------------------------------------------------------------------- /android/src/main/java/com/stfalcon/frescoimageviewer/AnimationUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/android/src/main/java/com/stfalcon/frescoimageviewer/AnimationUtils.java -------------------------------------------------------------------------------- /android/src/main/java/com/stfalcon/frescoimageviewer/ImageViewer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/android/src/main/java/com/stfalcon/frescoimageviewer/ImageViewer.java -------------------------------------------------------------------------------- /android/src/main/java/com/stfalcon/frescoimageviewer/ImageViewerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/android/src/main/java/com/stfalcon/frescoimageviewer/ImageViewerAdapter.java -------------------------------------------------------------------------------- /android/src/main/java/com/stfalcon/frescoimageviewer/ImageViewerView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/android/src/main/java/com/stfalcon/frescoimageviewer/ImageViewerView.java -------------------------------------------------------------------------------- /android/src/main/java/com/stfalcon/frescoimageviewer/MultiTouchViewPager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/android/src/main/java/com/stfalcon/frescoimageviewer/MultiTouchViewPager.java -------------------------------------------------------------------------------- /android/src/main/java/com/stfalcon/frescoimageviewer/OnDismissListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/android/src/main/java/com/stfalcon/frescoimageviewer/OnDismissListener.java -------------------------------------------------------------------------------- /android/src/main/java/com/stfalcon/frescoimageviewer/SwipeDirectionDetector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/android/src/main/java/com/stfalcon/frescoimageviewer/SwipeDirectionDetector.java -------------------------------------------------------------------------------- /android/src/main/java/com/stfalcon/frescoimageviewer/SwipeToDismissListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/android/src/main/java/com/stfalcon/frescoimageviewer/SwipeToDismissListener.java -------------------------------------------------------------------------------- /android/src/main/java/com/stfalcon/frescoimageviewer/adapter/RecyclingPagerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/android/src/main/java/com/stfalcon/frescoimageviewer/adapter/RecyclingPagerAdapter.java -------------------------------------------------------------------------------- /android/src/main/java/com/stfalcon/frescoimageviewer/adapter/ViewHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/android/src/main/java/com/stfalcon/frescoimageviewer/adapter/ViewHolder.java -------------------------------------------------------------------------------- /android/src/main/java/com/stfalcon/frescoimageviewer/drawee/NonInterceptableAttacher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/android/src/main/java/com/stfalcon/frescoimageviewer/drawee/NonInterceptableAttacher.java -------------------------------------------------------------------------------- /android/src/main/java/com/stfalcon/frescoimageviewer/drawee/ZoomableDraweeView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/android/src/main/java/com/stfalcon/frescoimageviewer/drawee/ZoomableDraweeView.java -------------------------------------------------------------------------------- /android/src/main/res/drawable/close_button_x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/android/src/main/res/drawable/close_button_x.png -------------------------------------------------------------------------------- /android/src/main/res/layout/image_viewer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/android/src/main/res/layout/image_viewer.xml -------------------------------------------------------------------------------- /android/src/main/res/layout/photo_viewer_overlay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/android/src/main/res/layout/photo_viewer_overlay.xml -------------------------------------------------------------------------------- /android/src/main/res/values/color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/android/src/main/res/values/color.xml -------------------------------------------------------------------------------- /android/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/android/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/android/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /assets/20170728-110148@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/assets/20170728-110148@2x.png -------------------------------------------------------------------------------- /assets/android.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/assets/android.gif -------------------------------------------------------------------------------- /assets/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/assets/preview.gif -------------------------------------------------------------------------------- /docs/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/docs/assets/css/main.css -------------------------------------------------------------------------------- /docs/assets/css/main.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/docs/assets/css/main.css.map -------------------------------------------------------------------------------- /docs/assets/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/docs/assets/images/icons.png -------------------------------------------------------------------------------- /docs/assets/images/icons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/docs/assets/images/icons@2x.png -------------------------------------------------------------------------------- /docs/assets/images/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/docs/assets/images/widgets.png -------------------------------------------------------------------------------- /docs/assets/images/widgets@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/docs/assets/images/widgets@2x.png -------------------------------------------------------------------------------- /docs/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/docs/assets/js/main.js -------------------------------------------------------------------------------- /docs/assets/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/docs/assets/js/search.js -------------------------------------------------------------------------------- /docs/classes/merryphotoview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/docs/classes/merryphotoview.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/interfaces/merryphotoviewporps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/docs/interfaces/merryphotoviewporps.html -------------------------------------------------------------------------------- /docs/interfaces/photo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/docs/interfaces/photo.html -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/index.js -------------------------------------------------------------------------------- /index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/index.tsx -------------------------------------------------------------------------------- /ios/Cartfile: -------------------------------------------------------------------------------- 1 | github "NYTimes/NYTPhotoViewer" 2 | -------------------------------------------------------------------------------- /ios/Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Cartfile.resolved -------------------------------------------------------------------------------- /ios/Carthage/Build/.FLAnimatedImage.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/.FLAnimatedImage.version -------------------------------------------------------------------------------- /ios/Carthage/Build/.NYTPhotoViewer.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/.NYTPhotoViewer.version -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/0A4229EF-BD62-3DA8-998B-20D37E9CD3FC.bcsymbolmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/0A4229EF-BD62-3DA8-998B-20D37E9CD3FC.bcsymbolmap -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/0B24CA97-E3FB-3CCF-AD83-23A6B2640A82.bcsymbolmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/0B24CA97-E3FB-3CCF-AD83-23A6B2640A82.bcsymbolmap -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/2D231A10-BFF0-361C-B2C3-F1E2FAE04532.bcsymbolmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/2D231A10-BFF0-361C-B2C3-F1E2FAE04532.bcsymbolmap -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/50BBFB41-823A-3B4F-B73B-8FE2606997D0.bcsymbolmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/50BBFB41-823A-3B4F-B73B-8FE2606997D0.bcsymbolmap -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/5387A9F9-F51B-393F-B2F3-58F0C068E191.bcsymbolmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/5387A9F9-F51B-393F-B2F3-58F0C068E191.bcsymbolmap -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/67E67408-38C3-34BD-A84D-509FDAC31832.bcsymbolmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/67E67408-38C3-34BD-A84D-509FDAC31832.bcsymbolmap -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/7FAA3CCE-9C9A-3F2C-BDD0-A2281C693F1D.bcsymbolmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/7FAA3CCE-9C9A-3F2C-BDD0-A2281C693F1D.bcsymbolmap -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/88284DB7-60BD-31D9-8966-144E363FD4B9.bcsymbolmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/88284DB7-60BD-31D9-8966-144E363FD4B9.bcsymbolmap -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/89E8CF33-A7AE-3479-93F1-0209D854F0E2.bcsymbolmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/89E8CF33-A7AE-3479-93F1-0209D854F0E2.bcsymbolmap -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/A12C533B-7944-377F-BF64-C9798A374741.bcsymbolmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/A12C533B-7944-377F-BF64-C9798A374741.bcsymbolmap -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/A2EC9B3A-4871-3BF8-8EBD-56F473332312.bcsymbolmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/A2EC9B3A-4871-3BF8-8EBD-56F473332312.bcsymbolmap -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/ABC91C93-CD09-322E-8E43-BCB7E3DEF58A.bcsymbolmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/ABC91C93-CD09-322E-8E43-BCB7E3DEF58A.bcsymbolmap -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/D46ECA18-AF97-3723-8281-3156BB5C988C.bcsymbolmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/D46ECA18-AF97-3723-8281-3156BB5C988C.bcsymbolmap -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/D84BB03A-640B-3204-B552-EC0E977884C3.bcsymbolmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/D84BB03A-640B-3204-B552-EC0E977884C3.bcsymbolmap -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/E1B4C4B3-7D19-3843-8674-560E71CEC010.bcsymbolmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/E1B4C4B3-7D19-3843-8674-560E71CEC010.bcsymbolmap -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/EBE23784-8242-33CD-BDCB-4558CB207995.bcsymbolmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/EBE23784-8242-33CD-BDCB-4558CB207995.bcsymbolmap -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/FLAnimatedImage.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/FLAnimatedImage.framework.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/FLAnimatedImage.framework.dSYM/Contents/Resources/DWARF/FLAnimatedImage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/FLAnimatedImage.framework.dSYM/Contents/Resources/DWARF/FLAnimatedImage -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/FLAnimatedImage.framework/FLAnimatedImage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/FLAnimatedImage.framework/FLAnimatedImage -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/FLAnimatedImage.framework/Headers/FLAnimatedImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/FLAnimatedImage.framework/Headers/FLAnimatedImage.h -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/FLAnimatedImage.framework/Headers/FLAnimatedImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/FLAnimatedImage.framework/Headers/FLAnimatedImageView.h -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/FLAnimatedImage.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/FLAnimatedImage.framework/Info.plist -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/FLAnimatedImage.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/FLAnimatedImage.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewer.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewer.framework.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewer.framework.dSYM/Contents/Resources/DWARF/NYTPhotoViewer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewer.framework.dSYM/Contents/Resources/DWARF/NYTPhotoViewer -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewer.framework/Headers/NSBundle+NYTPhotoViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewer.framework/Headers/NSBundle+NYTPhotoViewer.h -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewer.framework/Headers/NYTPhoto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewer.framework/Headers/NYTPhoto.h -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewer.framework/Headers/NYTPhotoCaptionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewer.framework/Headers/NYTPhotoCaptionView.h -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewer.framework/Headers/NYTPhotoCaptionViewLayoutWidthHinting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewer.framework/Headers/NYTPhotoCaptionViewLayoutWidthHinting.h -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewer.framework/Headers/NYTPhotoContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewer.framework/Headers/NYTPhotoContainer.h -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewer.framework/Headers/NYTPhotoDismissalInteractionController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewer.framework/Headers/NYTPhotoDismissalInteractionController.h -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewer.framework/Headers/NYTPhotoTransitionAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewer.framework/Headers/NYTPhotoTransitionAnimator.h -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewer.framework/Headers/NYTPhotoTransitionController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewer.framework/Headers/NYTPhotoTransitionController.h -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewer.framework/Headers/NYTPhotoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewer.framework/Headers/NYTPhotoViewController.h -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewer.framework/Headers/NYTPhotoViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewer.framework/Headers/NYTPhotoViewer.h -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewer.framework/Headers/NYTPhotoViewerArrayDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewer.framework/Headers/NYTPhotoViewerArrayDataSource.h -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewer.framework/Headers/NYTPhotoViewerDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewer.framework/Headers/NYTPhotoViewerDataSource.h -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewer.framework/Headers/NYTPhotoViewerSinglePhotoDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewer.framework/Headers/NYTPhotoViewerSinglePhotoDataSource.h -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewer.framework/Headers/NYTPhotosOverlayView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewer.framework/Headers/NYTPhotosOverlayView.h -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewer.framework/Headers/NYTPhotosViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewer.framework/Headers/NYTPhotosViewController.h -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewer.framework/Headers/NYTScalingImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewer.framework/Headers/NYTScalingImageView.h -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewer.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewer.framework/Info.plist -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewer.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewer.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewer.framework/NYTPhotoViewer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewer.framework/NYTPhotoViewer -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewer.framework/NYTPhotoViewer.bundle/NYTPhotoViewerCloseButtonX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewer.framework/NYTPhotoViewer.bundle/NYTPhotoViewerCloseButtonX.png -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewer.framework/NYTPhotoViewer.bundle/NYTPhotoViewerCloseButtonX@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewer.framework/NYTPhotoViewer.bundle/NYTPhotoViewerCloseButtonX@2x.png -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewer.framework/NYTPhotoViewer.bundle/NYTPhotoViewerCloseButtonX@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewer.framework/NYTPhotoViewer.bundle/NYTPhotoViewerCloseButtonX@3x.png -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewer.framework/NYTPhotoViewer.bundle/NYTPhotoViewerCloseButtonXLandscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewer.framework/NYTPhotoViewer.bundle/NYTPhotoViewerCloseButtonXLandscape.png -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewer.framework/NYTPhotoViewer.bundle/NYTPhotoViewerCloseButtonXLandscape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewer.framework/NYTPhotoViewer.bundle/NYTPhotoViewerCloseButtonXLandscape@2x.png -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewer.framework/NYTPhotoViewer.bundle/NYTPhotoViewerCloseButtonXLandscape@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewer.framework/NYTPhotoViewer.bundle/NYTPhotoViewerCloseButtonXLandscape@3x.png -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework.dSYM/Contents/Resources/DWARF/NYTPhotoViewerCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework.dSYM/Contents/Resources/DWARF/NYTPhotoViewerCore -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/Headers/NSBundle+NYTPhotoViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/Headers/NSBundle+NYTPhotoViewer.h -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/Headers/NYTPhoto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/Headers/NYTPhoto.h -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/Headers/NYTPhotoCaptionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/Headers/NYTPhotoCaptionView.h -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/Headers/NYTPhotoCaptionViewLayoutWidthHinting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/Headers/NYTPhotoCaptionViewLayoutWidthHinting.h -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/Headers/NYTPhotoContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/Headers/NYTPhotoContainer.h -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/Headers/NYTPhotoDismissalInteractionController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/Headers/NYTPhotoDismissalInteractionController.h -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/Headers/NYTPhotoTransitionAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/Headers/NYTPhotoTransitionAnimator.h -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/Headers/NYTPhotoTransitionController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/Headers/NYTPhotoTransitionController.h -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/Headers/NYTPhotoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/Headers/NYTPhotoViewController.h -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/Headers/NYTPhotoViewerArrayDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/Headers/NYTPhotoViewerArrayDataSource.h -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/Headers/NYTPhotoViewerCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/Headers/NYTPhotoViewerCore.h -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/Headers/NYTPhotoViewerDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/Headers/NYTPhotoViewerDataSource.h -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/Headers/NYTPhotoViewerSinglePhotoDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/Headers/NYTPhotoViewerSinglePhotoDataSource.h -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/Headers/NYTPhotosOverlayView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/Headers/NYTPhotosOverlayView.h -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/Headers/NYTPhotosViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/Headers/NYTPhotosViewController.h -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/Headers/NYTScalingImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/Headers/NYTScalingImageView.h -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/Info.plist -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/NYTPhotoViewer.bundle/NYTPhotoViewerCloseButtonX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/NYTPhotoViewer.bundle/NYTPhotoViewerCloseButtonX.png -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/NYTPhotoViewer.bundle/NYTPhotoViewerCloseButtonX@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/NYTPhotoViewer.bundle/NYTPhotoViewerCloseButtonX@2x.png -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/NYTPhotoViewer.bundle/NYTPhotoViewerCloseButtonX@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/NYTPhotoViewer.bundle/NYTPhotoViewerCloseButtonX@3x.png -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/NYTPhotoViewer.bundle/NYTPhotoViewerCloseButtonXLandscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/NYTPhotoViewer.bundle/NYTPhotoViewerCloseButtonXLandscape.png -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/NYTPhotoViewer.bundle/NYTPhotoViewerCloseButtonXLandscape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/NYTPhotoViewer.bundle/NYTPhotoViewerCloseButtonXLandscape@2x.png -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/NYTPhotoViewer.bundle/NYTPhotoViewerCloseButtonXLandscape@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/NYTPhotoViewer.bundle/NYTPhotoViewerCloseButtonXLandscape@3x.png -------------------------------------------------------------------------------- /ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/NYTPhotoViewerCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/Carthage/Build/iOS/NYTPhotoViewerCore.framework/NYTPhotoViewerCore -------------------------------------------------------------------------------- /ios/MerryCommonHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/MerryCommonHeader.h -------------------------------------------------------------------------------- /ios/MerryPhoto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/MerryPhoto.h -------------------------------------------------------------------------------- /ios/MerryPhoto.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/MerryPhoto.m -------------------------------------------------------------------------------- /ios/MerryPhotoData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/MerryPhotoData.h -------------------------------------------------------------------------------- /ios/MerryPhotoData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/MerryPhotoData.m -------------------------------------------------------------------------------- /ios/MerryPhotoView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/MerryPhotoView.h -------------------------------------------------------------------------------- /ios/MerryPhotoView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/MerryPhotoView.m -------------------------------------------------------------------------------- /ios/MerryPhotoViewManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/MerryPhotoViewManager.h -------------------------------------------------------------------------------- /ios/MerryPhotoViewManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/MerryPhotoViewManager.m -------------------------------------------------------------------------------- /ios/MerryPhotoViewer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/ios/MerryPhotoViewer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merryjs/photo-viewer/HEAD/yarn.lock --------------------------------------------------------------------------------