├── .bundle └── config ├── .eslintrc.js ├── .github ├── FUNDING.yml └── workflows │ ├── build-android.yml │ └── build-ios-simulator.yml ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── .yarnrc.yml ├── App.tsx ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── __tests__ └── App.test.tsx ├── android ├── app │ ├── build.gradle │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── rn_animations │ │ │ ├── MainActivity.kt │ │ │ └── MainApplication.kt │ │ └── res │ │ ├── drawable │ │ └── rn_edit_text_material.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 │ │ ├── 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 ├── .xcode.env ├── Podfile ├── Podfile.lock ├── RN_Animations.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── RN_Animations.xcscheme ├── RN_Animations.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── RN_Animations │ ├── AppDelegate.h │ ├── AppDelegate.mm │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ ├── PrivacyInfo.xcprivacy │ └── main.m └── RN_AnimationsTests │ ├── Info.plist │ └── RN_AnimationsTests.m ├── jest.config.js ├── metro.config.js ├── package.json ├── src ├── AppControlFlow.tsx ├── AppNavigator.tsx ├── Config.ts ├── assets │ ├── demo │ │ ├── animated_toolbar.png │ │ ├── color_swatch.png │ │ ├── custom_caret.png │ │ ├── grid_mag │ │ │ ├── grid_mag_initial.png │ │ │ └── grid_magnification.png │ │ └── rope │ │ │ ├── rope-skia.png │ │ │ ├── rope-sockets-demo.png │ │ │ └── rope-svg.png │ └── index.ts ├── components │ ├── BackButton.tsx │ └── index.ts ├── models │ └── demo.ts ├── samples │ ├── color_swatch │ │ ├── ColorSwatch.tsx │ │ └── README.md │ ├── custom_caret │ │ ├── CustomCaret.tsx │ │ ├── MaxLength.tsx │ │ ├── PasswordStrength.tsx │ │ └── README.md │ ├── custom_toolbar │ │ ├── README.md │ │ ├── Toolbar.tsx │ │ ├── ToolbarAnimated.tsx │ │ ├── buttons.ts │ │ └── index.tsx │ ├── grid_magnification │ │ ├── GridMagnification.tsx │ │ ├── GridMagnificationInitial.tsx │ │ ├── GridMagnificationSkia.tsx │ │ ├── README.md │ │ ├── icons.ts │ │ ├── index.tsx │ │ └── types.ts │ └── rope_physics │ │ ├── README.md │ │ ├── RopePhysics.tsx │ │ ├── RopeViewSkia.tsx │ │ ├── RopeViewSvg.tsx │ │ ├── helper.ts │ │ ├── index.ts │ │ └── plug_socket │ │ ├── PlugSocketsView.tsx │ │ ├── README.md │ │ ├── RopeViewSkia.tsx │ │ ├── RopeViewSvg.tsx │ │ ├── index.ts │ │ ├── model.ts │ │ └── types.ts ├── screens │ ├── HomeScene.tsx │ ├── index.ts │ └── list │ │ ├── ListItem.tsx │ │ └── SamplesListView.tsx └── theme.ts ├── tsconfig.json └── yarn.lock /.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/.bundle/config -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/build-android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/.github/workflows/build-android.yml -------------------------------------------------------------------------------- /.github/workflows/build-ios-simulator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/.github/workflows/build-ios-simulator.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/App.tsx -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/__tests__/App.test.tsx -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/rn_animations/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/android/app/src/main/java/com/rn_animations/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/rn_animations/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/android/app/src/main/java/com/rn_animations/MainApplication.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/index.js -------------------------------------------------------------------------------- /ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/ios/.xcode.env -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/RN_Animations.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/ios/RN_Animations.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/RN_Animations.xcodeproj/xcshareddata/xcschemes/RN_Animations.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/ios/RN_Animations.xcodeproj/xcshareddata/xcschemes/RN_Animations.xcscheme -------------------------------------------------------------------------------- /ios/RN_Animations.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/ios/RN_Animations.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/RN_Animations.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/ios/RN_Animations.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/RN_Animations/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/ios/RN_Animations/AppDelegate.h -------------------------------------------------------------------------------- /ios/RN_Animations/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/ios/RN_Animations/AppDelegate.mm -------------------------------------------------------------------------------- /ios/RN_Animations/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/ios/RN_Animations/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/RN_Animations/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/ios/RN_Animations/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/RN_Animations/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/ios/RN_Animations/Info.plist -------------------------------------------------------------------------------- /ios/RN_Animations/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/ios/RN_Animations/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/RN_Animations/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/ios/RN_Animations/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /ios/RN_Animations/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/ios/RN_Animations/main.m -------------------------------------------------------------------------------- /ios/RN_AnimationsTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/ios/RN_AnimationsTests/Info.plist -------------------------------------------------------------------------------- /ios/RN_AnimationsTests/RN_AnimationsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/ios/RN_AnimationsTests/RN_AnimationsTests.m -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/package.json -------------------------------------------------------------------------------- /src/AppControlFlow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/AppControlFlow.tsx -------------------------------------------------------------------------------- /src/AppNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/AppNavigator.tsx -------------------------------------------------------------------------------- /src/Config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/Config.ts -------------------------------------------------------------------------------- /src/assets/demo/animated_toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/assets/demo/animated_toolbar.png -------------------------------------------------------------------------------- /src/assets/demo/color_swatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/assets/demo/color_swatch.png -------------------------------------------------------------------------------- /src/assets/demo/custom_caret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/assets/demo/custom_caret.png -------------------------------------------------------------------------------- /src/assets/demo/grid_mag/grid_mag_initial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/assets/demo/grid_mag/grid_mag_initial.png -------------------------------------------------------------------------------- /src/assets/demo/grid_mag/grid_magnification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/assets/demo/grid_mag/grid_magnification.png -------------------------------------------------------------------------------- /src/assets/demo/rope/rope-skia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/assets/demo/rope/rope-skia.png -------------------------------------------------------------------------------- /src/assets/demo/rope/rope-sockets-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/assets/demo/rope/rope-sockets-demo.png -------------------------------------------------------------------------------- /src/assets/demo/rope/rope-svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/assets/demo/rope/rope-svg.png -------------------------------------------------------------------------------- /src/assets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/assets/index.ts -------------------------------------------------------------------------------- /src/components/BackButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/components/BackButton.tsx -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/components/index.ts -------------------------------------------------------------------------------- /src/models/demo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/models/demo.ts -------------------------------------------------------------------------------- /src/samples/color_swatch/ColorSwatch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/samples/color_swatch/ColorSwatch.tsx -------------------------------------------------------------------------------- /src/samples/color_swatch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/samples/color_swatch/README.md -------------------------------------------------------------------------------- /src/samples/custom_caret/CustomCaret.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/samples/custom_caret/CustomCaret.tsx -------------------------------------------------------------------------------- /src/samples/custom_caret/MaxLength.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/samples/custom_caret/MaxLength.tsx -------------------------------------------------------------------------------- /src/samples/custom_caret/PasswordStrength.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/samples/custom_caret/PasswordStrength.tsx -------------------------------------------------------------------------------- /src/samples/custom_caret/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/samples/custom_caret/README.md -------------------------------------------------------------------------------- /src/samples/custom_toolbar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/samples/custom_toolbar/README.md -------------------------------------------------------------------------------- /src/samples/custom_toolbar/Toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/samples/custom_toolbar/Toolbar.tsx -------------------------------------------------------------------------------- /src/samples/custom_toolbar/ToolbarAnimated.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/samples/custom_toolbar/ToolbarAnimated.tsx -------------------------------------------------------------------------------- /src/samples/custom_toolbar/buttons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/samples/custom_toolbar/buttons.ts -------------------------------------------------------------------------------- /src/samples/custom_toolbar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/samples/custom_toolbar/index.tsx -------------------------------------------------------------------------------- /src/samples/grid_magnification/GridMagnification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/samples/grid_magnification/GridMagnification.tsx -------------------------------------------------------------------------------- /src/samples/grid_magnification/GridMagnificationInitial.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/samples/grid_magnification/GridMagnificationInitial.tsx -------------------------------------------------------------------------------- /src/samples/grid_magnification/GridMagnificationSkia.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/samples/grid_magnification/GridMagnificationSkia.tsx -------------------------------------------------------------------------------- /src/samples/grid_magnification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/samples/grid_magnification/README.md -------------------------------------------------------------------------------- /src/samples/grid_magnification/icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/samples/grid_magnification/icons.ts -------------------------------------------------------------------------------- /src/samples/grid_magnification/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/samples/grid_magnification/index.tsx -------------------------------------------------------------------------------- /src/samples/grid_magnification/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/samples/grid_magnification/types.ts -------------------------------------------------------------------------------- /src/samples/rope_physics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/samples/rope_physics/README.md -------------------------------------------------------------------------------- /src/samples/rope_physics/RopePhysics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/samples/rope_physics/RopePhysics.tsx -------------------------------------------------------------------------------- /src/samples/rope_physics/RopeViewSkia.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/samples/rope_physics/RopeViewSkia.tsx -------------------------------------------------------------------------------- /src/samples/rope_physics/RopeViewSvg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/samples/rope_physics/RopeViewSvg.tsx -------------------------------------------------------------------------------- /src/samples/rope_physics/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/samples/rope_physics/helper.ts -------------------------------------------------------------------------------- /src/samples/rope_physics/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/samples/rope_physics/index.ts -------------------------------------------------------------------------------- /src/samples/rope_physics/plug_socket/PlugSocketsView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/samples/rope_physics/plug_socket/PlugSocketsView.tsx -------------------------------------------------------------------------------- /src/samples/rope_physics/plug_socket/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/samples/rope_physics/plug_socket/README.md -------------------------------------------------------------------------------- /src/samples/rope_physics/plug_socket/RopeViewSkia.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/samples/rope_physics/plug_socket/RopeViewSkia.tsx -------------------------------------------------------------------------------- /src/samples/rope_physics/plug_socket/RopeViewSvg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/samples/rope_physics/plug_socket/RopeViewSvg.tsx -------------------------------------------------------------------------------- /src/samples/rope_physics/plug_socket/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/samples/rope_physics/plug_socket/index.ts -------------------------------------------------------------------------------- /src/samples/rope_physics/plug_socket/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/samples/rope_physics/plug_socket/model.ts -------------------------------------------------------------------------------- /src/samples/rope_physics/plug_socket/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/samples/rope_physics/plug_socket/types.ts -------------------------------------------------------------------------------- /src/screens/HomeScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/screens/HomeScene.tsx -------------------------------------------------------------------------------- /src/screens/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/screens/index.ts -------------------------------------------------------------------------------- /src/screens/list/ListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/screens/list/ListItem.tsx -------------------------------------------------------------------------------- /src/screens/list/SamplesListView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/screens/list/SamplesListView.tsx -------------------------------------------------------------------------------- /src/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/src/theme.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aashu-Dubey/react-native-animation-samples/HEAD/yarn.lock --------------------------------------------------------------------------------