├── .buckconfig ├── .editorconfig ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── App.js ├── Gemfile ├── README.md ├── __tests__ └── App-test.tsx ├── _bundle └── config ├── _node-version ├── _ruby-version ├── android ├── app │ ├── build.gradle │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── reactnativeanimations │ │ │ └── ReactNativeFlipper.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ │ └── index.android.bundle │ │ ├── java │ │ │ └── com │ │ │ │ └── reactnativeanimations │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ ├── node_modules_reactnavigation_elements_src_assets_backicon.png │ │ │ └── node_modules_reactnavigation_nativestack_node_modules_reactnavigation_elements_src_assets_backicon.png │ │ │ ├── drawable-mdpi │ │ │ ├── node_modules_reactnavigation_elements_src_assets_backicon.png │ │ │ ├── node_modules_reactnavigation_elements_src_assets_backiconmask.png │ │ │ ├── node_modules_reactnavigation_nativestack_node_modules_reactnavigation_elements_src_assets_backicon.png │ │ │ ├── node_modules_reactnavigation_nativestack_node_modules_reactnavigation_elements_src_assets_backiconmask.png │ │ │ ├── src_addtocart_productimg.jpeg │ │ │ ├── src_bkashpayment_bkashlogo.png │ │ │ ├── src_pizzaslider_images_pizza1.png │ │ │ ├── src_pizzaslider_images_pizza2.png │ │ │ ├── src_pizzaslider_images_pizza3.png │ │ │ ├── src_pizzaslider_images_pizza4.png │ │ │ ├── src_sharedelementtransitions_addtocart_images_cheeseburger.png │ │ │ ├── src_sharedelementtransitions_addtocart_images_hotsoup.png │ │ │ └── src_sharedelementtransitions_addtocart_images_salad.png │ │ │ ├── drawable-xhdpi │ │ │ ├── node_modules_reactnavigation_elements_src_assets_backicon.png │ │ │ └── node_modules_reactnavigation_nativestack_node_modules_reactnavigation_elements_src_assets_backicon.png │ │ │ ├── drawable-xxhdpi │ │ │ ├── node_modules_reactnavigation_elements_src_assets_backicon.png │ │ │ └── node_modules_reactnavigation_nativestack_node_modules_reactnavigation_elements_src_assets_backicon.png │ │ │ ├── drawable-xxxhdpi │ │ │ ├── node_modules_reactnavigation_elements_src_assets_backicon.png │ │ │ └── node_modules_reactnavigation_nativestack_node_modules_reactnavigation_elements_src_assets_backicon.png │ │ │ ├── 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 │ │ └── release │ │ └── java │ │ └── com │ │ └── reactnativeanimations │ │ └── ReactNativeFlipper.java ├── 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 ├── ReactNativeAnimations.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── ReactNativeAnimations.xcscheme ├── ReactNativeAnimations.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── ReactNativeAnimations │ ├── AppDelegate.h │ ├── AppDelegate.mm │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ └── main.m ├── ReactNativeAnimationsTests │ ├── Info.plist │ └── ReactNativeAnimationsTests.m └── _xcode.env ├── metro.config.js ├── package.json ├── src ├── HomeScreen.js ├── SwipeSlider │ ├── Button.js │ ├── Card.js │ ├── Cart.js │ ├── GestureContainer.js │ ├── images │ │ ├── pizza-2.png │ │ ├── pizza1.png │ │ ├── pizza2.png │ │ ├── pizza3.png │ │ └── pizza4.png │ └── index.js ├── TwitterLike │ ├── TweetActionButtons.js │ ├── header.js │ ├── index.js │ ├── like.json │ └── tweet.js ├── addToCart │ ├── index.js │ ├── productImg.jpeg │ └── productPage.js ├── bKashPayment │ ├── bKash-logo.png │ ├── index.js │ ├── tapToPay.js │ └── userCard.js ├── chatDelete │ ├── chat.js │ ├── deleteIcon.js │ ├── index.js │ └── swipable.js ├── googleCalendar │ └── index.js ├── pullToRefresh │ ├── card.js │ ├── circlesRotate.json │ ├── index.js │ └── tabBar.js ├── sharedElementTransitions │ └── addToCart │ │ ├── ProductDetails.js │ │ ├── ProductPage.js │ │ ├── components │ │ ├── Cart.js │ │ ├── CartItems.js │ │ ├── Categories.js │ │ ├── FakeCartItems.js │ │ ├── FakeImage.js │ │ └── ProductList.js │ │ ├── context │ │ └── CartProvider.js │ │ ├── images │ │ ├── cheeseburger.png │ │ ├── hot-soup.png │ │ └── salad.png │ │ └── index.js ├── slider │ ├── backgrounImage.js │ ├── dots.js │ └── slider.js ├── swipeToDelete │ ├── card.js │ ├── header.js │ ├── index.js │ ├── swipable.js │ └── textAvatar.js ├── whatsAppSearch │ └── index.js └── youtube │ ├── header.js │ ├── index.js │ ├── tabBar.js │ ├── tabs.js │ ├── videoCard.js │ ├── youtube.js │ └── youtubePlayer.js ├── tsconfig.json └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/.buckconfig -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # Windows files 2 | [*.bat] 3 | end_of_line = crlf 4 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/App.js -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App-test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/__tests__/App-test.tsx -------------------------------------------------------------------------------- /_bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/_bundle/config -------------------------------------------------------------------------------- /_node-version: -------------------------------------------------------------------------------- 1 | 18 2 | -------------------------------------------------------------------------------- /_ruby-version: -------------------------------------------------------------------------------- 1 | 2.7.6 2 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/java/com/reactnativeanimations/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/android/app/src/debug/java/com/reactnativeanimations/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/index.android.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/android/app/src/main/assets/index.android.bundle -------------------------------------------------------------------------------- /android/app/src/main/java/com/reactnativeanimations/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/android/app/src/main/java/com/reactnativeanimations/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/reactnativeanimations/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/android/app/src/main/java/com/reactnativeanimations/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/node_modules_reactnavigation_elements_src_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/android/app/src/main/res/drawable-hdpi/node_modules_reactnavigation_elements_src_assets_backicon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/node_modules_reactnavigation_nativestack_node_modules_reactnavigation_elements_src_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/android/app/src/main/res/drawable-hdpi/node_modules_reactnavigation_nativestack_node_modules_reactnavigation_elements_src_assets_backicon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/node_modules_reactnavigation_elements_src_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/android/app/src/main/res/drawable-mdpi/node_modules_reactnavigation_elements_src_assets_backicon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/node_modules_reactnavigation_elements_src_assets_backiconmask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/android/app/src/main/res/drawable-mdpi/node_modules_reactnavigation_elements_src_assets_backiconmask.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/node_modules_reactnavigation_nativestack_node_modules_reactnavigation_elements_src_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/android/app/src/main/res/drawable-mdpi/node_modules_reactnavigation_nativestack_node_modules_reactnavigation_elements_src_assets_backicon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/node_modules_reactnavigation_nativestack_node_modules_reactnavigation_elements_src_assets_backiconmask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/android/app/src/main/res/drawable-mdpi/node_modules_reactnavigation_nativestack_node_modules_reactnavigation_elements_src_assets_backiconmask.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/src_addtocart_productimg.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/android/app/src/main/res/drawable-mdpi/src_addtocart_productimg.jpeg -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/src_bkashpayment_bkashlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/android/app/src/main/res/drawable-mdpi/src_bkashpayment_bkashlogo.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/src_pizzaslider_images_pizza1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/android/app/src/main/res/drawable-mdpi/src_pizzaslider_images_pizza1.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/src_pizzaslider_images_pizza2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/android/app/src/main/res/drawable-mdpi/src_pizzaslider_images_pizza2.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/src_pizzaslider_images_pizza3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/android/app/src/main/res/drawable-mdpi/src_pizzaslider_images_pizza3.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/src_pizzaslider_images_pizza4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/android/app/src/main/res/drawable-mdpi/src_pizzaslider_images_pizza4.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/src_sharedelementtransitions_addtocart_images_cheeseburger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/android/app/src/main/res/drawable-mdpi/src_sharedelementtransitions_addtocart_images_cheeseburger.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/src_sharedelementtransitions_addtocart_images_hotsoup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/android/app/src/main/res/drawable-mdpi/src_sharedelementtransitions_addtocart_images_hotsoup.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/src_sharedelementtransitions_addtocart_images_salad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/android/app/src/main/res/drawable-mdpi/src_sharedelementtransitions_addtocart_images_salad.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/node_modules_reactnavigation_elements_src_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/android/app/src/main/res/drawable-xhdpi/node_modules_reactnavigation_elements_src_assets_backicon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/node_modules_reactnavigation_nativestack_node_modules_reactnavigation_elements_src_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/android/app/src/main/res/drawable-xhdpi/node_modules_reactnavigation_nativestack_node_modules_reactnavigation_elements_src_assets_backicon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/node_modules_reactnavigation_elements_src_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/android/app/src/main/res/drawable-xxhdpi/node_modules_reactnavigation_elements_src_assets_backicon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/node_modules_reactnavigation_nativestack_node_modules_reactnavigation_elements_src_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/android/app/src/main/res/drawable-xxhdpi/node_modules_reactnavigation_nativestack_node_modules_reactnavigation_elements_src_assets_backicon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/node_modules_reactnavigation_elements_src_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/android/app/src/main/res/drawable-xxxhdpi/node_modules_reactnavigation_elements_src_assets_backicon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/node_modules_reactnavigation_nativestack_node_modules_reactnavigation_elements_src_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/android/app/src/main/res/drawable-xxxhdpi/node_modules_reactnavigation_nativestack_node_modules_reactnavigation_elements_src_assets_backicon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/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/redwanul10/React-Native-Animations/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/redwanul10/React-Native-Animations/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/redwanul10/React-Native-Animations/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/redwanul10/React-Native-Animations/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/redwanul10/React-Native-Animations/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/redwanul10/React-Native-Animations/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/redwanul10/React-Native-Animations/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/redwanul10/React-Native-Animations/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/redwanul10/React-Native-Animations/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/redwanul10/React-Native-Animations/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/release/java/com/reactnativeanimations/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/android/app/src/release/java/com/reactnativeanimations/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/index.js -------------------------------------------------------------------------------- /ios/.xcode.env: -------------------------------------------------------------------------------- 1 | export NODE_BINARY=$(command -v node) 2 | -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/ReactNativeAnimations.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/ios/ReactNativeAnimations.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/ReactNativeAnimations.xcodeproj/xcshareddata/xcschemes/ReactNativeAnimations.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/ios/ReactNativeAnimations.xcodeproj/xcshareddata/xcschemes/ReactNativeAnimations.xcscheme -------------------------------------------------------------------------------- /ios/ReactNativeAnimations.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/ios/ReactNativeAnimations.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/ReactNativeAnimations.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/ios/ReactNativeAnimations.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/ReactNativeAnimations/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/ios/ReactNativeAnimations/AppDelegate.h -------------------------------------------------------------------------------- /ios/ReactNativeAnimations/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/ios/ReactNativeAnimations/AppDelegate.mm -------------------------------------------------------------------------------- /ios/ReactNativeAnimations/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/ios/ReactNativeAnimations/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/ReactNativeAnimations/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/ios/ReactNativeAnimations/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/ReactNativeAnimations/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/ios/ReactNativeAnimations/Info.plist -------------------------------------------------------------------------------- /ios/ReactNativeAnimations/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/ios/ReactNativeAnimations/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/ReactNativeAnimations/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/ios/ReactNativeAnimations/main.m -------------------------------------------------------------------------------- /ios/ReactNativeAnimationsTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/ios/ReactNativeAnimationsTests/Info.plist -------------------------------------------------------------------------------- /ios/ReactNativeAnimationsTests/ReactNativeAnimationsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/ios/ReactNativeAnimationsTests/ReactNativeAnimationsTests.m -------------------------------------------------------------------------------- /ios/_xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/ios/_xcode.env -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/package.json -------------------------------------------------------------------------------- /src/HomeScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/HomeScreen.js -------------------------------------------------------------------------------- /src/SwipeSlider/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/SwipeSlider/Button.js -------------------------------------------------------------------------------- /src/SwipeSlider/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/SwipeSlider/Card.js -------------------------------------------------------------------------------- /src/SwipeSlider/Cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/SwipeSlider/Cart.js -------------------------------------------------------------------------------- /src/SwipeSlider/GestureContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/SwipeSlider/GestureContainer.js -------------------------------------------------------------------------------- /src/SwipeSlider/images/pizza-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/SwipeSlider/images/pizza-2.png -------------------------------------------------------------------------------- /src/SwipeSlider/images/pizza1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/SwipeSlider/images/pizza1.png -------------------------------------------------------------------------------- /src/SwipeSlider/images/pizza2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/SwipeSlider/images/pizza2.png -------------------------------------------------------------------------------- /src/SwipeSlider/images/pizza3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/SwipeSlider/images/pizza3.png -------------------------------------------------------------------------------- /src/SwipeSlider/images/pizza4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/SwipeSlider/images/pizza4.png -------------------------------------------------------------------------------- /src/SwipeSlider/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/SwipeSlider/index.js -------------------------------------------------------------------------------- /src/TwitterLike/TweetActionButtons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/TwitterLike/TweetActionButtons.js -------------------------------------------------------------------------------- /src/TwitterLike/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/TwitterLike/header.js -------------------------------------------------------------------------------- /src/TwitterLike/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/TwitterLike/index.js -------------------------------------------------------------------------------- /src/TwitterLike/like.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/TwitterLike/like.json -------------------------------------------------------------------------------- /src/TwitterLike/tweet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/TwitterLike/tweet.js -------------------------------------------------------------------------------- /src/addToCart/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/addToCart/index.js -------------------------------------------------------------------------------- /src/addToCart/productImg.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/addToCart/productImg.jpeg -------------------------------------------------------------------------------- /src/addToCart/productPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/addToCart/productPage.js -------------------------------------------------------------------------------- /src/bKashPayment/bKash-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/bKashPayment/bKash-logo.png -------------------------------------------------------------------------------- /src/bKashPayment/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/bKashPayment/index.js -------------------------------------------------------------------------------- /src/bKashPayment/tapToPay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/bKashPayment/tapToPay.js -------------------------------------------------------------------------------- /src/bKashPayment/userCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/bKashPayment/userCard.js -------------------------------------------------------------------------------- /src/chatDelete/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/chatDelete/chat.js -------------------------------------------------------------------------------- /src/chatDelete/deleteIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/chatDelete/deleteIcon.js -------------------------------------------------------------------------------- /src/chatDelete/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/chatDelete/index.js -------------------------------------------------------------------------------- /src/chatDelete/swipable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/chatDelete/swipable.js -------------------------------------------------------------------------------- /src/googleCalendar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/googleCalendar/index.js -------------------------------------------------------------------------------- /src/pullToRefresh/card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/pullToRefresh/card.js -------------------------------------------------------------------------------- /src/pullToRefresh/circlesRotate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/pullToRefresh/circlesRotate.json -------------------------------------------------------------------------------- /src/pullToRefresh/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/pullToRefresh/index.js -------------------------------------------------------------------------------- /src/pullToRefresh/tabBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/pullToRefresh/tabBar.js -------------------------------------------------------------------------------- /src/sharedElementTransitions/addToCart/ProductDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/sharedElementTransitions/addToCart/ProductDetails.js -------------------------------------------------------------------------------- /src/sharedElementTransitions/addToCart/ProductPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/sharedElementTransitions/addToCart/ProductPage.js -------------------------------------------------------------------------------- /src/sharedElementTransitions/addToCart/components/Cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/sharedElementTransitions/addToCart/components/Cart.js -------------------------------------------------------------------------------- /src/sharedElementTransitions/addToCart/components/CartItems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/sharedElementTransitions/addToCart/components/CartItems.js -------------------------------------------------------------------------------- /src/sharedElementTransitions/addToCart/components/Categories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/sharedElementTransitions/addToCart/components/Categories.js -------------------------------------------------------------------------------- /src/sharedElementTransitions/addToCart/components/FakeCartItems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/sharedElementTransitions/addToCart/components/FakeCartItems.js -------------------------------------------------------------------------------- /src/sharedElementTransitions/addToCart/components/FakeImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/sharedElementTransitions/addToCart/components/FakeImage.js -------------------------------------------------------------------------------- /src/sharedElementTransitions/addToCart/components/ProductList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/sharedElementTransitions/addToCart/components/ProductList.js -------------------------------------------------------------------------------- /src/sharedElementTransitions/addToCart/context/CartProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/sharedElementTransitions/addToCart/context/CartProvider.js -------------------------------------------------------------------------------- /src/sharedElementTransitions/addToCart/images/cheeseburger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/sharedElementTransitions/addToCart/images/cheeseburger.png -------------------------------------------------------------------------------- /src/sharedElementTransitions/addToCart/images/hot-soup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/sharedElementTransitions/addToCart/images/hot-soup.png -------------------------------------------------------------------------------- /src/sharedElementTransitions/addToCart/images/salad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/sharedElementTransitions/addToCart/images/salad.png -------------------------------------------------------------------------------- /src/sharedElementTransitions/addToCart/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/sharedElementTransitions/addToCart/index.js -------------------------------------------------------------------------------- /src/slider/backgrounImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/slider/backgrounImage.js -------------------------------------------------------------------------------- /src/slider/dots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/slider/dots.js -------------------------------------------------------------------------------- /src/slider/slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/slider/slider.js -------------------------------------------------------------------------------- /src/swipeToDelete/card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/swipeToDelete/card.js -------------------------------------------------------------------------------- /src/swipeToDelete/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/swipeToDelete/header.js -------------------------------------------------------------------------------- /src/swipeToDelete/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/swipeToDelete/index.js -------------------------------------------------------------------------------- /src/swipeToDelete/swipable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/swipeToDelete/swipable.js -------------------------------------------------------------------------------- /src/swipeToDelete/textAvatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/swipeToDelete/textAvatar.js -------------------------------------------------------------------------------- /src/whatsAppSearch/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/whatsAppSearch/index.js -------------------------------------------------------------------------------- /src/youtube/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/youtube/header.js -------------------------------------------------------------------------------- /src/youtube/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/youtube/index.js -------------------------------------------------------------------------------- /src/youtube/tabBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/youtube/tabBar.js -------------------------------------------------------------------------------- /src/youtube/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/youtube/tabs.js -------------------------------------------------------------------------------- /src/youtube/videoCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/youtube/videoCard.js -------------------------------------------------------------------------------- /src/youtube/youtube.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/youtube/youtube.js -------------------------------------------------------------------------------- /src/youtube/youtubePlayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/src/youtube/youtubePlayer.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redwanul10/React-Native-Animations/HEAD/yarn.lock --------------------------------------------------------------------------------