├── .circleci └── config.yml ├── .editorconfig ├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── .husky ├── .npmignore ├── commit-msg └── pre-commit ├── .yarnrc ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── babel.config.js ├── example ├── android │ ├── .gitignore │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── build_defs.bzl │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── nishanbende │ │ │ │ └── reactnativereanimatedzoomexample │ │ │ │ └── ReactNativeFlipper.java │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── nishanbende │ │ │ │ └── reactnativereanimatedzoomexample │ │ │ │ ├── MainActivity.java │ │ │ │ ├── MainApplication.java │ │ │ │ └── newarchitecture │ │ │ │ ├── MainApplicationReactNativeHost.java │ │ │ │ ├── components │ │ │ │ └── MainComponentsRegistry.java │ │ │ │ └── modules │ │ │ │ └── MainApplicationTurboModuleManagerDelegate.java │ │ │ ├── jni │ │ │ ├── Android.mk │ │ │ ├── MainApplicationModuleProvider.cpp │ │ │ ├── MainApplicationModuleProvider.h │ │ │ ├── MainApplicationTurboModuleManagerDelegate.cpp │ │ │ ├── MainApplicationTurboModuleManagerDelegate.h │ │ │ ├── MainComponentsRegistry.cpp │ │ │ ├── MainComponentsRegistry.h │ │ │ └── OnLoad.cpp │ │ │ └── res │ │ │ ├── drawable │ │ │ ├── rn_edit_text_material.xml │ │ │ └── splashscreen.xml │ │ │ ├── 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-night │ │ │ └── colors.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── 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 ├── index.js ├── ios │ ├── .gitignore │ ├── .xcode.env │ ├── Podfile │ ├── Podfile.lock │ ├── Podfile.properties.json │ ├── reactnativereanimatedzoomexample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── reactnativereanimatedzoomexample.xcscheme │ ├── reactnativereanimatedzoomexample.xcworkspace │ │ └── contents.xcworkspacedata │ └── reactnativereanimatedzoomexample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.mm │ │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── SplashScreenBackground.imageset │ │ │ ├── Contents.json │ │ │ └── image.png │ │ ├── Info.plist │ │ ├── SplashScreen.storyboard │ │ ├── Supporting │ │ └── Expo.plist │ │ ├── main.m │ │ ├── noop-file.swift │ │ └── reactnativereanimatedzoomexample.entitlements ├── metro.config.js ├── package.json ├── src │ └── App.tsx ├── tsconfig.json ├── webpack.config.js └── yarn.lock ├── package.json ├── scripts └── bootstrap.js ├── src ├── __tests__ │ └── index.test.tsx ├── createZoomListComponent.tsx ├── index.ts ├── zoom-list-context.ts └── zoom.tsx ├── tsconfig.build.json ├── tsconfig.json └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.npmignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | yarn commitlint -E HUSKY_GIT_PARAMS 5 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/.yarnrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/babel.config.js -------------------------------------------------------------------------------- /example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/android/.gitignore -------------------------------------------------------------------------------- /example/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/android/app/BUCK -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/android/app/build_defs.bzl -------------------------------------------------------------------------------- /example/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/android/app/debug.keystore -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/debug/java/com/nishanbende/reactnativereanimatedzoomexample/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/android/app/src/debug/java/com/nishanbende/reactnativereanimatedzoomexample/ReactNativeFlipper.java -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/nishanbende/reactnativereanimatedzoomexample/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/android/app/src/main/java/com/nishanbende/reactnativereanimatedzoomexample/MainActivity.java -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/nishanbende/reactnativereanimatedzoomexample/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/android/app/src/main/java/com/nishanbende/reactnativereanimatedzoomexample/MainApplication.java -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/nishanbende/reactnativereanimatedzoomexample/newarchitecture/MainApplicationReactNativeHost.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/android/app/src/main/java/com/nishanbende/reactnativereanimatedzoomexample/newarchitecture/MainApplicationReactNativeHost.java -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/nishanbende/reactnativereanimatedzoomexample/newarchitecture/components/MainComponentsRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/android/app/src/main/java/com/nishanbende/reactnativereanimatedzoomexample/newarchitecture/components/MainComponentsRegistry.java -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/nishanbende/reactnativereanimatedzoomexample/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/android/app/src/main/java/com/nishanbende/reactnativereanimatedzoomexample/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java -------------------------------------------------------------------------------- /example/android/app/src/main/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/android/app/src/main/jni/Android.mk -------------------------------------------------------------------------------- /example/android/app/src/main/jni/MainApplicationModuleProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/android/app/src/main/jni/MainApplicationModuleProvider.cpp -------------------------------------------------------------------------------- /example/android/app/src/main/jni/MainApplicationModuleProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/android/app/src/main/jni/MainApplicationModuleProvider.h -------------------------------------------------------------------------------- /example/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp -------------------------------------------------------------------------------- /example/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h -------------------------------------------------------------------------------- /example/android/app/src/main/jni/MainComponentsRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/android/app/src/main/jni/MainComponentsRegistry.cpp -------------------------------------------------------------------------------- /example/android/app/src/main/jni/MainComponentsRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/android/app/src/main/jni/MainComponentsRegistry.h -------------------------------------------------------------------------------- /example/android/app/src/main/jni/OnLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/android/app/src/main/jni/OnLoad.cpp -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/splashscreen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/android/app/src/main/res/drawable/splashscreen.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/app.json -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/index.js -------------------------------------------------------------------------------- /example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/ios/.gitignore -------------------------------------------------------------------------------- /example/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/ios/.xcode.env -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/ios/Podfile.properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "expo.jsEngine": "jsc" 3 | } 4 | -------------------------------------------------------------------------------- /example/ios/reactnativereanimatedzoomexample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/ios/reactnativereanimatedzoomexample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/reactnativereanimatedzoomexample.xcodeproj/xcshareddata/xcschemes/reactnativereanimatedzoomexample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/ios/reactnativereanimatedzoomexample.xcodeproj/xcshareddata/xcschemes/reactnativereanimatedzoomexample.xcscheme -------------------------------------------------------------------------------- /example/ios/reactnativereanimatedzoomexample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/ios/reactnativereanimatedzoomexample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/reactnativereanimatedzoomexample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/ios/reactnativereanimatedzoomexample/AppDelegate.h -------------------------------------------------------------------------------- /example/ios/reactnativereanimatedzoomexample/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/ios/reactnativereanimatedzoomexample/AppDelegate.mm -------------------------------------------------------------------------------- /example/ios/reactnativereanimatedzoomexample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/ios/reactnativereanimatedzoomexample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/reactnativereanimatedzoomexample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/ios/reactnativereanimatedzoomexample/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /example/ios/reactnativereanimatedzoomexample/Images.xcassets/SplashScreenBackground.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/ios/reactnativereanimatedzoomexample/Images.xcassets/SplashScreenBackground.imageset/Contents.json -------------------------------------------------------------------------------- /example/ios/reactnativereanimatedzoomexample/Images.xcassets/SplashScreenBackground.imageset/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/ios/reactnativereanimatedzoomexample/Images.xcassets/SplashScreenBackground.imageset/image.png -------------------------------------------------------------------------------- /example/ios/reactnativereanimatedzoomexample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/ios/reactnativereanimatedzoomexample/Info.plist -------------------------------------------------------------------------------- /example/ios/reactnativereanimatedzoomexample/SplashScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/ios/reactnativereanimatedzoomexample/SplashScreen.storyboard -------------------------------------------------------------------------------- /example/ios/reactnativereanimatedzoomexample/Supporting/Expo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/ios/reactnativereanimatedzoomexample/Supporting/Expo.plist -------------------------------------------------------------------------------- /example/ios/reactnativereanimatedzoomexample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/ios/reactnativereanimatedzoomexample/main.m -------------------------------------------------------------------------------- /example/ios/reactnativereanimatedzoomexample/noop-file.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/ios/reactnativereanimatedzoomexample/noop-file.swift -------------------------------------------------------------------------------- /example/ios/reactnativereanimatedzoomexample/reactnativereanimatedzoomexample.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/ios/reactnativereanimatedzoomexample/reactnativereanimatedzoomexample.entitlements -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/package.json -------------------------------------------------------------------------------- /example/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/src/App.tsx -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /example/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/webpack.config.js -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/package.json -------------------------------------------------------------------------------- /scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/scripts/bootstrap.js -------------------------------------------------------------------------------- /src/__tests__/index.test.tsx: -------------------------------------------------------------------------------- 1 | it.todo('write a test'); 2 | -------------------------------------------------------------------------------- /src/createZoomListComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/src/createZoomListComponent.tsx -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/zoom-list-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/src/zoom-list-context.ts -------------------------------------------------------------------------------- /src/zoom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/src/zoom.tsx -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intergalacticspacehighway/react-native-reanimated-zoom/HEAD/yarn.lock --------------------------------------------------------------------------------