├── .gitattributes ├── .gitignore ├── AnimatedSplashExample1 ├── .buckconfig ├── .bundle │ └── config ├── .eslintrc.js ├── .flowconfig ├── .gitignore ├── .prettierrc.js ├── .ruby-version ├── .watchmanconfig ├── App.js ├── Gemfile ├── SOAPWrapper.js ├── Splash.js ├── __tests__ │ └── App-test.js ├── android │ ├── app │ │ ├── _BUCK │ │ ├── build.gradle │ │ ├── build_defs.bzl │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── animatedsplashexample1 │ │ │ │ └── ReactNativeFlipper.java │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── animatedsplashexample1 │ │ │ │ ├── MainActivity.java │ │ │ │ ├── MainApplication.java │ │ │ │ └── newarchitecture │ │ │ │ ├── MainApplicationReactNativeHost.java │ │ │ │ ├── components │ │ │ │ └── MainComponentsRegistry.java │ │ │ │ └── modules │ │ │ │ └── MainApplicationTurboModuleManagerDelegate.java │ │ │ ├── jni │ │ │ ├── Android.mk │ │ │ ├── MainApplicationModuleProvider.cpp │ │ │ ├── MainApplicationModuleProvider.h │ │ │ ├── MainApplicationTurboModuleManagerDelegate.cpp │ │ │ ├── MainApplicationTurboModuleManagerDelegate.h │ │ │ ├── MainComponentsRegistry.cpp │ │ │ ├── MainComponentsRegistry.h │ │ │ └── OnLoad.cpp │ │ │ └── res │ │ │ ├── anim │ │ │ ├── faday.xml │ │ │ ├── fadein_dialog.xml │ │ │ ├── fadeout_dialog.xml │ │ │ ├── flip_animation.xml │ │ │ ├── slide_down.xml │ │ │ ├── slide_left.xml │ │ │ ├── slide_right.xml │ │ │ └── slide_up.xml │ │ │ ├── drawable │ │ │ ├── logo.png │ │ │ ├── oval1.png │ │ │ ├── oval2.png │ │ │ └── oval3.png │ │ │ ├── layout │ │ │ └── launch_screen.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ ├── ic_launcher2.xml │ │ │ ├── ic_launcher2_round.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher2.png │ │ │ ├── ic_launcher2_background.png │ │ │ ├── ic_launcher2_foreground.png │ │ │ ├── ic_launcher2_round.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher2.png │ │ │ ├── ic_launcher2_background.png │ │ │ ├── ic_launcher2_foreground.png │ │ │ ├── ic_launcher2_round.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher2.png │ │ │ ├── ic_launcher2_background.png │ │ │ ├── ic_launcher2_foreground.png │ │ │ ├── ic_launcher2_round.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher2.png │ │ │ ├── ic_launcher2_background.png │ │ │ ├── ic_launcher2_foreground.png │ │ │ ├── ic_launcher2_round.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher2.png │ │ │ ├── ic_launcher2_background.png │ │ │ ├── ic_launcher2_foreground.png │ │ │ ├── ic_launcher2_round.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── color.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── app.json ├── babel.config.js ├── ccc.js ├── index.js ├── ios │ ├── AnimatedSplashExample1.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── AnimatedSplashExample1.xcscheme │ ├── AnimatedSplashExample1.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── AnimatedSplashExample1 │ │ ├── AppDelegate.h │ │ ├── AppDelegate.mm │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── 1024.png │ │ │ │ ├── 120-1.png │ │ │ │ ├── 120.png │ │ │ │ ├── 180.png │ │ │ │ ├── 40.png │ │ │ │ ├── 58.png │ │ │ │ ├── 60.png │ │ │ │ ├── 80.png │ │ │ │ ├── 87.png │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── circle1.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── oval3-1.png │ │ │ │ ├── oval3-2.png │ │ │ │ └── oval3.png │ │ │ ├── circle2.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── oval2-1.png │ │ │ │ ├── oval2-2.png │ │ │ │ └── oval2.png │ │ │ ├── circle3.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── oval1-1.png │ │ │ │ ├── oval1-2.png │ │ │ │ └── oval1.png │ │ │ ├── logo1.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── logo-1.png │ │ │ │ ├── logo-2.png │ │ │ │ └── logo.png │ │ │ ├── splashbg.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── splashbg.png │ │ │ │ ├── splashbg@2x.png │ │ │ │ └── splashbg@3x.png │ │ │ └── truck.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── truck.png │ │ │ │ ├── truck@2x.png │ │ │ │ └── truck@3x.png │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── main.m │ ├── AnimatedSplashExample1Tests │ │ ├── AnimatedSplashExample1Tests.m │ │ └── Info.plist │ ├── Podfile │ ├── Podfile.lock │ └── _xcode.env ├── metro.config.js ├── package.json ├── src │ └── assets │ │ └── images │ │ ├── logo.png │ │ └── logo2.png └── yarn.lock ├── AnimatedSplashExample2 ├── .buckconfig ├── .bundle │ └── config ├── .eslintrc.js ├── .flowconfig ├── .gitignore ├── .prettierrc.js ├── .ruby-version ├── .watchmanconfig ├── App.js ├── Gemfile ├── __tests__ │ └── App-test.js ├── _node-version ├── android │ ├── app │ │ ├── _BUCK │ │ ├── build.gradle │ │ ├── build_defs.bzl │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── animatedsplashexample2 │ │ │ │ └── ReactNativeFlipper.java │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── animatedsplashexample2 │ │ │ │ ├── MainActivity.java │ │ │ │ ├── MainApplication.java │ │ │ │ └── newarchitecture │ │ │ │ ├── MainApplicationReactNativeHost.java │ │ │ │ ├── components │ │ │ │ └── MainComponentsRegistry.java │ │ │ │ └── modules │ │ │ │ └── MainApplicationTurboModuleManagerDelegate.java │ │ │ ├── jni │ │ │ ├── CMakeLists.txt │ │ │ ├── MainApplicationModuleProvider.cpp │ │ │ ├── MainApplicationModuleProvider.h │ │ │ ├── MainApplicationTurboModuleManagerDelegate.cpp │ │ │ ├── MainApplicationTurboModuleManagerDelegate.h │ │ │ ├── MainComponentsRegistry.cpp │ │ │ ├── MainComponentsRegistry.h │ │ │ └── OnLoad.cpp │ │ │ └── res │ │ │ ├── drawable │ │ │ ├── footer.png │ │ │ ├── header.png │ │ │ ├── logo2.png │ │ │ └── splashbg.png │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── color.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── app.json ├── babel.config.js ├── index.js ├── ios │ ├── AnimatedSplashExample2.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── AnimatedSplashExample2.xcscheme │ ├── AnimatedSplashExample2.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── AnimatedSplashExample2 │ │ ├── AppDelegate.h │ │ ├── AppDelegate.mm │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── 1024.png │ │ │ │ ├── 120-1.png │ │ │ │ ├── 120.png │ │ │ │ ├── 180.png │ │ │ │ ├── 40.png │ │ │ │ ├── 58.png │ │ │ │ ├── 60.png │ │ │ │ ├── 80.png │ │ │ │ ├── 87.png │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── footer.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── footer-1.png │ │ │ │ ├── footer-2.png │ │ │ │ └── footer.png │ │ │ ├── header.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── header-1.png │ │ │ │ ├── header-2.png │ │ │ │ └── header.png │ │ │ ├── logo2.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── logo2-1.png │ │ │ │ ├── logo2-2.png │ │ │ │ └── logo2.png │ │ │ └── splashBg.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── splashbg-1.png │ │ │ │ ├── splashbg-2.png │ │ │ │ └── splashbg.png │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── main.m │ ├── AnimatedSplashExample2Tests │ │ ├── AnimatedSplashExample2Tests.m │ │ └── Info.plist │ ├── Podfile │ ├── Podfile.lock │ └── _xcode.env ├── metro.config.js ├── package.json ├── src │ └── assets │ │ └── images │ │ └── logo2.png └── yarn.lock ├── LICENSE ├── README.md ├── RNAnimatedSplash.podspec ├── SECURITY.md ├── android ├── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── blitzapp │ │ └── animatedsplash │ │ ├── AnimationsList.java │ │ ├── HideAnimationList.java │ │ ├── ListItem.java │ │ ├── RNAnimatedSplashModule.java │ │ ├── RNAnimatedSplashPackage.java │ │ └── animation │ │ ├── AnimatedObject.java │ │ ├── AnimatedText.java │ │ ├── Constants.java │ │ ├── GroupAnimation.java │ │ ├── HideGroupAnimation.java │ │ ├── HideSingleAnimation.java │ │ ├── NoAnimationException.java │ │ ├── ObjectAnimation.java │ │ ├── SingleAnimation.java │ │ └── Splash.java │ └── res │ ├── anim │ ├── faday.xml │ ├── fadein_dialog.xml │ ├── fadeout_dialog.xml │ ├── flip_animation.xml │ ├── slide_down.xml │ ├── slide_left.xml │ ├── slide_right.xml │ └── slide_up.xml │ └── values │ └── styles.xml ├── androidDescription.md ├── androidexample.md ├── example1.gif ├── example1ios.gif ├── example2.gif ├── example2ios.gif ├── index.js ├── ios ├── Animation │ ├── AddImageView.h │ ├── AddImageView.m │ ├── AnimateObject.h │ ├── AnimateObject.m │ ├── AnimatedObject.h │ ├── AnimatedObject.m │ ├── AnimationsList.h │ ├── AnimationsList.m │ ├── GroupAnimation.h │ ├── GroupAnimation.m │ ├── HideAnimationsList.h │ ├── HideAnimationsList.m │ ├── HideGroupAnimation.h │ ├── HideGroupAnimation.m │ ├── HideSingleAnimation.h │ ├── HideSingleAnimation.m │ ├── ObjectAnimation.h │ ├── ObjectAnimation.m │ ├── SingleAnimation.h │ ├── SingleAnimation.m │ ├── Splash.h │ └── Splash.m ├── Podfile ├── Podfile.lock ├── Pods │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ └── Pods-RNAnimatedSplash │ │ ├── Pods-RNAnimatedSplash-Info.plist │ │ ├── Pods-RNAnimatedSplash-acknowledgements.markdown │ │ ├── Pods-RNAnimatedSplash-acknowledgements.plist │ │ ├── Pods-RNAnimatedSplash-dummy.m │ │ ├── Pods-RNAnimatedSplash-umbrella.h │ │ ├── Pods-RNAnimatedSplash.debug.xcconfig │ │ ├── Pods-RNAnimatedSplash.modulemap │ │ └── Pods-RNAnimatedSplash.release.xcconfig ├── RNAnimatedSplash.h ├── RNAnimatedSplash.m ├── RNAnimatedSplash.podspec ├── RNAnimatedSplash.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── RNAnimatedSplash.xcscheme └── RNAnimatedSplash.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── iosDescription.md ├── iosexample.md └── package.json /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/.gitignore -------------------------------------------------------------------------------- /AnimatedSplashExample1/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/.buckconfig -------------------------------------------------------------------------------- /AnimatedSplashExample1/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/.bundle/config -------------------------------------------------------------------------------- /AnimatedSplashExample1/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /AnimatedSplashExample1/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/.flowconfig -------------------------------------------------------------------------------- /AnimatedSplashExample1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/.gitignore -------------------------------------------------------------------------------- /AnimatedSplashExample1/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/.prettierrc.js -------------------------------------------------------------------------------- /AnimatedSplashExample1/.ruby-version: -------------------------------------------------------------------------------- 1 | 2.7.5 2 | -------------------------------------------------------------------------------- /AnimatedSplashExample1/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /AnimatedSplashExample1/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/App.js -------------------------------------------------------------------------------- /AnimatedSplashExample1/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/Gemfile -------------------------------------------------------------------------------- /AnimatedSplashExample1/SOAPWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/SOAPWrapper.js -------------------------------------------------------------------------------- /AnimatedSplashExample1/Splash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/Splash.js -------------------------------------------------------------------------------- /AnimatedSplashExample1/__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/__tests__/App-test.js -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/_BUCK -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/build.gradle -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/build_defs.bzl -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/debug.keystore -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/debug/java/com/animatedsplashexample1/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/debug/java/com/animatedsplashexample1/ReactNativeFlipper.java -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/java/com/animatedsplashexample1/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/java/com/animatedsplashexample1/MainActivity.java -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/java/com/animatedsplashexample1/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/java/com/animatedsplashexample1/MainApplication.java -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/java/com/animatedsplashexample1/newarchitecture/MainApplicationReactNativeHost.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/java/com/animatedsplashexample1/newarchitecture/MainApplicationReactNativeHost.java -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/java/com/animatedsplashexample1/newarchitecture/components/MainComponentsRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/java/com/animatedsplashexample1/newarchitecture/components/MainComponentsRegistry.java -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/java/com/animatedsplashexample1/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/java/com/animatedsplashexample1/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/jni/Android.mk -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/jni/MainApplicationModuleProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/jni/MainApplicationModuleProvider.cpp -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/jni/MainApplicationModuleProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/jni/MainApplicationModuleProvider.h -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/jni/MainComponentsRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/jni/MainComponentsRegistry.cpp -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/jni/MainComponentsRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/jni/MainComponentsRegistry.h -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/jni/OnLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/jni/OnLoad.cpp -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/anim/faday.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/anim/faday.xml -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/anim/fadein_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/anim/fadein_dialog.xml -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/anim/fadeout_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/anim/fadeout_dialog.xml -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/anim/flip_animation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/anim/flip_animation.xml -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/anim/slide_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/anim/slide_down.xml -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/anim/slide_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/anim/slide_left.xml -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/anim/slide_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/anim/slide_right.xml -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/anim/slide_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/anim/slide_up.xml -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/drawable/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/drawable/logo.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/drawable/oval1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/drawable/oval1.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/drawable/oval2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/drawable/oval2.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/drawable/oval3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/drawable/oval3.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/layout/launch_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/layout/launch_screen.xml -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher2.xml -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher2_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher2_round.xml -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/mipmap-hdpi/ic_launcher2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/mipmap-hdpi/ic_launcher2.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/mipmap-hdpi/ic_launcher2_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/mipmap-hdpi/ic_launcher2_background.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/mipmap-hdpi/ic_launcher2_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/mipmap-hdpi/ic_launcher2_foreground.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/mipmap-hdpi/ic_launcher2_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/mipmap-hdpi/ic_launcher2_round.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/mipmap-hdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/mipmap-hdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/mipmap-mdpi/ic_launcher2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/mipmap-mdpi/ic_launcher2.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/mipmap-mdpi/ic_launcher2_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/mipmap-mdpi/ic_launcher2_background.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/mipmap-mdpi/ic_launcher2_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/mipmap-mdpi/ic_launcher2_foreground.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/mipmap-mdpi/ic_launcher2_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/mipmap-mdpi/ic_launcher2_round.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/mipmap-mdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/mipmap-mdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/mipmap-xhdpi/ic_launcher2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/mipmap-xhdpi/ic_launcher2.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/mipmap-xhdpi/ic_launcher2_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/mipmap-xhdpi/ic_launcher2_background.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/mipmap-xhdpi/ic_launcher2_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/mipmap-xhdpi/ic_launcher2_foreground.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/mipmap-xhdpi/ic_launcher2_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/mipmap-xhdpi/ic_launcher2_round.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/mipmap-xxhdpi/ic_launcher2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/mipmap-xxhdpi/ic_launcher2.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/mipmap-xxhdpi/ic_launcher2_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/mipmap-xxhdpi/ic_launcher2_background.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/mipmap-xxhdpi/ic_launcher2_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/mipmap-xxhdpi/ic_launcher2_foreground.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/mipmap-xxhdpi/ic_launcher2_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/mipmap-xxhdpi/ic_launcher2_round.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher2.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher2_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher2_background.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher2_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher2_foreground.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher2_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher2_round.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/values/color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/values/color.xml -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/build.gradle -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/gradle.properties -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/gradlew -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/gradlew.bat -------------------------------------------------------------------------------- /AnimatedSplashExample1/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/android/settings.gradle -------------------------------------------------------------------------------- /AnimatedSplashExample1/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/app.json -------------------------------------------------------------------------------- /AnimatedSplashExample1/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/babel.config.js -------------------------------------------------------------------------------- /AnimatedSplashExample1/ccc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ccc.js -------------------------------------------------------------------------------- /AnimatedSplashExample1/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/index.js -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/AnimatedSplashExample1.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/AnimatedSplashExample1.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/AnimatedSplashExample1.xcodeproj/xcshareddata/xcschemes/AnimatedSplashExample1.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/AnimatedSplashExample1.xcodeproj/xcshareddata/xcschemes/AnimatedSplashExample1.xcscheme -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/AnimatedSplashExample1.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/AnimatedSplashExample1.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/AnimatedSplashExample1.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/AnimatedSplashExample1.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/AnimatedSplashExample1/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/AnimatedSplashExample1/AppDelegate.h -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/AnimatedSplashExample1/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/AnimatedSplashExample1/AppDelegate.mm -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/AppIcon.appiconset/120-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/AppIcon.appiconset/120-1.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/circle1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/circle1.imageset/Contents.json -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/circle1.imageset/oval3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/circle1.imageset/oval3-1.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/circle1.imageset/oval3-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/circle1.imageset/oval3-2.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/circle1.imageset/oval3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/circle1.imageset/oval3.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/circle2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/circle2.imageset/Contents.json -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/circle2.imageset/oval2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/circle2.imageset/oval2-1.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/circle2.imageset/oval2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/circle2.imageset/oval2-2.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/circle2.imageset/oval2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/circle2.imageset/oval2.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/circle3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/circle3.imageset/Contents.json -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/circle3.imageset/oval1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/circle3.imageset/oval1-1.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/circle3.imageset/oval1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/circle3.imageset/oval1-2.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/circle3.imageset/oval1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/circle3.imageset/oval1.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/logo1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/logo1.imageset/Contents.json -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/logo1.imageset/logo-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/logo1.imageset/logo-1.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/logo1.imageset/logo-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/logo1.imageset/logo-2.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/logo1.imageset/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/logo1.imageset/logo.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/splashbg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/splashbg.imageset/Contents.json -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/splashbg.imageset/splashbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/splashbg.imageset/splashbg.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/splashbg.imageset/splashbg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/splashbg.imageset/splashbg@2x.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/splashbg.imageset/splashbg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/splashbg.imageset/splashbg@3x.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/truck.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/truck.imageset/Contents.json -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/truck.imageset/truck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/truck.imageset/truck.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/truck.imageset/truck@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/truck.imageset/truck@2x.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/truck.imageset/truck@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/AnimatedSplashExample1/Images.xcassets/truck.imageset/truck@3x.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/AnimatedSplashExample1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/AnimatedSplashExample1/Info.plist -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/AnimatedSplashExample1/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/AnimatedSplashExample1/LaunchScreen.storyboard -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/AnimatedSplashExample1/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/AnimatedSplashExample1/main.m -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/AnimatedSplashExample1Tests/AnimatedSplashExample1Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/AnimatedSplashExample1Tests/AnimatedSplashExample1Tests.m -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/AnimatedSplashExample1Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/AnimatedSplashExample1Tests/Info.plist -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/Podfile -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/Podfile.lock -------------------------------------------------------------------------------- /AnimatedSplashExample1/ios/_xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/ios/_xcode.env -------------------------------------------------------------------------------- /AnimatedSplashExample1/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/metro.config.js -------------------------------------------------------------------------------- /AnimatedSplashExample1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/package.json -------------------------------------------------------------------------------- /AnimatedSplashExample1/src/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/src/assets/images/logo.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/src/assets/images/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/src/assets/images/logo2.png -------------------------------------------------------------------------------- /AnimatedSplashExample1/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample1/yarn.lock -------------------------------------------------------------------------------- /AnimatedSplashExample2/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/.buckconfig -------------------------------------------------------------------------------- /AnimatedSplashExample2/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/.bundle/config -------------------------------------------------------------------------------- /AnimatedSplashExample2/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /AnimatedSplashExample2/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/.flowconfig -------------------------------------------------------------------------------- /AnimatedSplashExample2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/.gitignore -------------------------------------------------------------------------------- /AnimatedSplashExample2/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/.prettierrc.js -------------------------------------------------------------------------------- /AnimatedSplashExample2/.ruby-version: -------------------------------------------------------------------------------- 1 | 2.7.5 2 | -------------------------------------------------------------------------------- /AnimatedSplashExample2/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /AnimatedSplashExample2/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/App.js -------------------------------------------------------------------------------- /AnimatedSplashExample2/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/Gemfile -------------------------------------------------------------------------------- /AnimatedSplashExample2/__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/__tests__/App-test.js -------------------------------------------------------------------------------- /AnimatedSplashExample2/_node-version: -------------------------------------------------------------------------------- 1 | 16 2 | -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/_BUCK -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/build.gradle -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/build_defs.bzl -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/debug.keystore -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/src/debug/java/com/animatedsplashexample2/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/src/debug/java/com/animatedsplashexample2/ReactNativeFlipper.java -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/src/main/java/com/animatedsplashexample2/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/src/main/java/com/animatedsplashexample2/MainActivity.java -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/src/main/java/com/animatedsplashexample2/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/src/main/java/com/animatedsplashexample2/MainApplication.java -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/src/main/java/com/animatedsplashexample2/newarchitecture/MainApplicationReactNativeHost.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/src/main/java/com/animatedsplashexample2/newarchitecture/MainApplicationReactNativeHost.java -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/src/main/java/com/animatedsplashexample2/newarchitecture/components/MainComponentsRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/src/main/java/com/animatedsplashexample2/newarchitecture/components/MainComponentsRegistry.java -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/src/main/java/com/animatedsplashexample2/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/src/main/java/com/animatedsplashexample2/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/src/main/jni/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/src/main/jni/CMakeLists.txt -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/src/main/jni/MainApplicationModuleProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/src/main/jni/MainApplicationModuleProvider.cpp -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/src/main/jni/MainApplicationModuleProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/src/main/jni/MainApplicationModuleProvider.h -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/src/main/jni/MainComponentsRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/src/main/jni/MainComponentsRegistry.cpp -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/src/main/jni/MainComponentsRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/src/main/jni/MainComponentsRegistry.h -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/src/main/jni/OnLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/src/main/jni/OnLoad.cpp -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/src/main/res/drawable/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/src/main/res/drawable/footer.png -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/src/main/res/drawable/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/src/main/res/drawable/header.png -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/src/main/res/drawable/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/src/main/res/drawable/logo2.png -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/src/main/res/drawable/splashbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/src/main/res/drawable/splashbg.png -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/src/main/res/mipmap-hdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/src/main/res/mipmap-hdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/src/main/res/mipmap-mdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/src/main/res/mipmap-mdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/src/main/res/values/color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/src/main/res/values/color.xml -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/build.gradle -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/gradle.properties -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/gradlew -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/gradlew.bat -------------------------------------------------------------------------------- /AnimatedSplashExample2/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/android/settings.gradle -------------------------------------------------------------------------------- /AnimatedSplashExample2/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/app.json -------------------------------------------------------------------------------- /AnimatedSplashExample2/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/babel.config.js -------------------------------------------------------------------------------- /AnimatedSplashExample2/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/index.js -------------------------------------------------------------------------------- /AnimatedSplashExample2/ios/AnimatedSplashExample2.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/ios/AnimatedSplashExample2.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AnimatedSplashExample2/ios/AnimatedSplashExample2.xcodeproj/xcshareddata/xcschemes/AnimatedSplashExample2.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/ios/AnimatedSplashExample2.xcodeproj/xcshareddata/xcschemes/AnimatedSplashExample2.xcscheme -------------------------------------------------------------------------------- /AnimatedSplashExample2/ios/AnimatedSplashExample2.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/ios/AnimatedSplashExample2.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AnimatedSplashExample2/ios/AnimatedSplashExample2.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/ios/AnimatedSplashExample2.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /AnimatedSplashExample2/ios/AnimatedSplashExample2/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/ios/AnimatedSplashExample2/AppDelegate.h -------------------------------------------------------------------------------- /AnimatedSplashExample2/ios/AnimatedSplashExample2/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/ios/AnimatedSplashExample2/AppDelegate.mm -------------------------------------------------------------------------------- /AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/AppIcon.appiconset/120-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/AppIcon.appiconset/120-1.png -------------------------------------------------------------------------------- /AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/footer.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/footer.imageset/Contents.json -------------------------------------------------------------------------------- /AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/footer.imageset/footer-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/footer.imageset/footer-1.png -------------------------------------------------------------------------------- /AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/footer.imageset/footer-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/footer.imageset/footer-2.png -------------------------------------------------------------------------------- /AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/footer.imageset/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/footer.imageset/footer.png -------------------------------------------------------------------------------- /AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/header.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/header.imageset/Contents.json -------------------------------------------------------------------------------- /AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/header.imageset/header-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/header.imageset/header-1.png -------------------------------------------------------------------------------- /AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/header.imageset/header-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/header.imageset/header-2.png -------------------------------------------------------------------------------- /AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/header.imageset/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/header.imageset/header.png -------------------------------------------------------------------------------- /AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/logo2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/logo2.imageset/Contents.json -------------------------------------------------------------------------------- /AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/logo2.imageset/logo2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/logo2.imageset/logo2-1.png -------------------------------------------------------------------------------- /AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/logo2.imageset/logo2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/logo2.imageset/logo2-2.png -------------------------------------------------------------------------------- /AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/logo2.imageset/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/logo2.imageset/logo2.png -------------------------------------------------------------------------------- /AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/splashBg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/splashBg.imageset/Contents.json -------------------------------------------------------------------------------- /AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/splashBg.imageset/splashbg-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/splashBg.imageset/splashbg-1.png -------------------------------------------------------------------------------- /AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/splashBg.imageset/splashbg-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/splashBg.imageset/splashbg-2.png -------------------------------------------------------------------------------- /AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/splashBg.imageset/splashbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/ios/AnimatedSplashExample2/Images.xcassets/splashBg.imageset/splashbg.png -------------------------------------------------------------------------------- /AnimatedSplashExample2/ios/AnimatedSplashExample2/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/ios/AnimatedSplashExample2/Info.plist -------------------------------------------------------------------------------- /AnimatedSplashExample2/ios/AnimatedSplashExample2/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/ios/AnimatedSplashExample2/LaunchScreen.storyboard -------------------------------------------------------------------------------- /AnimatedSplashExample2/ios/AnimatedSplashExample2/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/ios/AnimatedSplashExample2/main.m -------------------------------------------------------------------------------- /AnimatedSplashExample2/ios/AnimatedSplashExample2Tests/AnimatedSplashExample2Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/ios/AnimatedSplashExample2Tests/AnimatedSplashExample2Tests.m -------------------------------------------------------------------------------- /AnimatedSplashExample2/ios/AnimatedSplashExample2Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/ios/AnimatedSplashExample2Tests/Info.plist -------------------------------------------------------------------------------- /AnimatedSplashExample2/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/ios/Podfile -------------------------------------------------------------------------------- /AnimatedSplashExample2/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/ios/Podfile.lock -------------------------------------------------------------------------------- /AnimatedSplashExample2/ios/_xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/ios/_xcode.env -------------------------------------------------------------------------------- /AnimatedSplashExample2/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/metro.config.js -------------------------------------------------------------------------------- /AnimatedSplashExample2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/package.json -------------------------------------------------------------------------------- /AnimatedSplashExample2/src/assets/images/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/src/assets/images/logo2.png -------------------------------------------------------------------------------- /AnimatedSplashExample2/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/AnimatedSplashExample2/yarn.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/README.md -------------------------------------------------------------------------------- /RNAnimatedSplash.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/RNAnimatedSplash.podspec -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/SECURITY.md -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/java/com/blitzapp/animatedsplash/AnimationsList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/android/src/main/java/com/blitzapp/animatedsplash/AnimationsList.java -------------------------------------------------------------------------------- /android/src/main/java/com/blitzapp/animatedsplash/HideAnimationList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/android/src/main/java/com/blitzapp/animatedsplash/HideAnimationList.java -------------------------------------------------------------------------------- /android/src/main/java/com/blitzapp/animatedsplash/ListItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/android/src/main/java/com/blitzapp/animatedsplash/ListItem.java -------------------------------------------------------------------------------- /android/src/main/java/com/blitzapp/animatedsplash/RNAnimatedSplashModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/android/src/main/java/com/blitzapp/animatedsplash/RNAnimatedSplashModule.java -------------------------------------------------------------------------------- /android/src/main/java/com/blitzapp/animatedsplash/RNAnimatedSplashPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/android/src/main/java/com/blitzapp/animatedsplash/RNAnimatedSplashPackage.java -------------------------------------------------------------------------------- /android/src/main/java/com/blitzapp/animatedsplash/animation/AnimatedObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/android/src/main/java/com/blitzapp/animatedsplash/animation/AnimatedObject.java -------------------------------------------------------------------------------- /android/src/main/java/com/blitzapp/animatedsplash/animation/AnimatedText.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/android/src/main/java/com/blitzapp/animatedsplash/animation/AnimatedText.java -------------------------------------------------------------------------------- /android/src/main/java/com/blitzapp/animatedsplash/animation/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/android/src/main/java/com/blitzapp/animatedsplash/animation/Constants.java -------------------------------------------------------------------------------- /android/src/main/java/com/blitzapp/animatedsplash/animation/GroupAnimation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/android/src/main/java/com/blitzapp/animatedsplash/animation/GroupAnimation.java -------------------------------------------------------------------------------- /android/src/main/java/com/blitzapp/animatedsplash/animation/HideGroupAnimation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/android/src/main/java/com/blitzapp/animatedsplash/animation/HideGroupAnimation.java -------------------------------------------------------------------------------- /android/src/main/java/com/blitzapp/animatedsplash/animation/HideSingleAnimation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/android/src/main/java/com/blitzapp/animatedsplash/animation/HideSingleAnimation.java -------------------------------------------------------------------------------- /android/src/main/java/com/blitzapp/animatedsplash/animation/NoAnimationException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/android/src/main/java/com/blitzapp/animatedsplash/animation/NoAnimationException.java -------------------------------------------------------------------------------- /android/src/main/java/com/blitzapp/animatedsplash/animation/ObjectAnimation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/android/src/main/java/com/blitzapp/animatedsplash/animation/ObjectAnimation.java -------------------------------------------------------------------------------- /android/src/main/java/com/blitzapp/animatedsplash/animation/SingleAnimation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/android/src/main/java/com/blitzapp/animatedsplash/animation/SingleAnimation.java -------------------------------------------------------------------------------- /android/src/main/java/com/blitzapp/animatedsplash/animation/Splash.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/android/src/main/java/com/blitzapp/animatedsplash/animation/Splash.java -------------------------------------------------------------------------------- /android/src/main/res/anim/faday.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/android/src/main/res/anim/faday.xml -------------------------------------------------------------------------------- /android/src/main/res/anim/fadein_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/android/src/main/res/anim/fadein_dialog.xml -------------------------------------------------------------------------------- /android/src/main/res/anim/fadeout_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/android/src/main/res/anim/fadeout_dialog.xml -------------------------------------------------------------------------------- /android/src/main/res/anim/flip_animation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/android/src/main/res/anim/flip_animation.xml -------------------------------------------------------------------------------- /android/src/main/res/anim/slide_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/android/src/main/res/anim/slide_down.xml -------------------------------------------------------------------------------- /android/src/main/res/anim/slide_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/android/src/main/res/anim/slide_left.xml -------------------------------------------------------------------------------- /android/src/main/res/anim/slide_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/android/src/main/res/anim/slide_right.xml -------------------------------------------------------------------------------- /android/src/main/res/anim/slide_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/android/src/main/res/anim/slide_up.xml -------------------------------------------------------------------------------- /android/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/android/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /androidDescription.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/androidDescription.md -------------------------------------------------------------------------------- /androidexample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/androidexample.md -------------------------------------------------------------------------------- /example1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/example1.gif -------------------------------------------------------------------------------- /example1ios.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/example1ios.gif -------------------------------------------------------------------------------- /example2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/example2.gif -------------------------------------------------------------------------------- /example2ios.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/example2ios.gif -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/index.js -------------------------------------------------------------------------------- /ios/Animation/AddImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/ios/Animation/AddImageView.h -------------------------------------------------------------------------------- /ios/Animation/AddImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/ios/Animation/AddImageView.m -------------------------------------------------------------------------------- /ios/Animation/AnimateObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/ios/Animation/AnimateObject.h -------------------------------------------------------------------------------- /ios/Animation/AnimateObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/ios/Animation/AnimateObject.m -------------------------------------------------------------------------------- /ios/Animation/AnimatedObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/ios/Animation/AnimatedObject.h -------------------------------------------------------------------------------- /ios/Animation/AnimatedObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/ios/Animation/AnimatedObject.m -------------------------------------------------------------------------------- /ios/Animation/AnimationsList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/ios/Animation/AnimationsList.h -------------------------------------------------------------------------------- /ios/Animation/AnimationsList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/ios/Animation/AnimationsList.m -------------------------------------------------------------------------------- /ios/Animation/GroupAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/ios/Animation/GroupAnimation.h -------------------------------------------------------------------------------- /ios/Animation/GroupAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/ios/Animation/GroupAnimation.m -------------------------------------------------------------------------------- /ios/Animation/HideAnimationsList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/ios/Animation/HideAnimationsList.h -------------------------------------------------------------------------------- /ios/Animation/HideAnimationsList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/ios/Animation/HideAnimationsList.m -------------------------------------------------------------------------------- /ios/Animation/HideGroupAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/ios/Animation/HideGroupAnimation.h -------------------------------------------------------------------------------- /ios/Animation/HideGroupAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/ios/Animation/HideGroupAnimation.m -------------------------------------------------------------------------------- /ios/Animation/HideSingleAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/ios/Animation/HideSingleAnimation.h -------------------------------------------------------------------------------- /ios/Animation/HideSingleAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/ios/Animation/HideSingleAnimation.m -------------------------------------------------------------------------------- /ios/Animation/ObjectAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/ios/Animation/ObjectAnimation.h -------------------------------------------------------------------------------- /ios/Animation/ObjectAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/ios/Animation/ObjectAnimation.m -------------------------------------------------------------------------------- /ios/Animation/SingleAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/ios/Animation/SingleAnimation.h -------------------------------------------------------------------------------- /ios/Animation/SingleAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/ios/Animation/SingleAnimation.m -------------------------------------------------------------------------------- /ios/Animation/Splash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/ios/Animation/Splash.h -------------------------------------------------------------------------------- /ios/Animation/Splash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/ios/Animation/Splash.m -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/ios/Pods/Manifest.lock -------------------------------------------------------------------------------- /ios/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/ios/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/Pods-RNAnimatedSplash/Pods-RNAnimatedSplash-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/ios/Pods/Target Support Files/Pods-RNAnimatedSplash/Pods-RNAnimatedSplash-Info.plist -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/Pods-RNAnimatedSplash/Pods-RNAnimatedSplash-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/ios/Pods/Target Support Files/Pods-RNAnimatedSplash/Pods-RNAnimatedSplash-acknowledgements.markdown -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/Pods-RNAnimatedSplash/Pods-RNAnimatedSplash-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/ios/Pods/Target Support Files/Pods-RNAnimatedSplash/Pods-RNAnimatedSplash-acknowledgements.plist -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/Pods-RNAnimatedSplash/Pods-RNAnimatedSplash-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/ios/Pods/Target Support Files/Pods-RNAnimatedSplash/Pods-RNAnimatedSplash-dummy.m -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/Pods-RNAnimatedSplash/Pods-RNAnimatedSplash-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/ios/Pods/Target Support Files/Pods-RNAnimatedSplash/Pods-RNAnimatedSplash-umbrella.h -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/Pods-RNAnimatedSplash/Pods-RNAnimatedSplash.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/ios/Pods/Target Support Files/Pods-RNAnimatedSplash/Pods-RNAnimatedSplash.debug.xcconfig -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/Pods-RNAnimatedSplash/Pods-RNAnimatedSplash.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/ios/Pods/Target Support Files/Pods-RNAnimatedSplash/Pods-RNAnimatedSplash.modulemap -------------------------------------------------------------------------------- /ios/Pods/Target Support Files/Pods-RNAnimatedSplash/Pods-RNAnimatedSplash.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/ios/Pods/Target Support Files/Pods-RNAnimatedSplash/Pods-RNAnimatedSplash.release.xcconfig -------------------------------------------------------------------------------- /ios/RNAnimatedSplash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/ios/RNAnimatedSplash.h -------------------------------------------------------------------------------- /ios/RNAnimatedSplash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/ios/RNAnimatedSplash.m -------------------------------------------------------------------------------- /ios/RNAnimatedSplash.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/ios/RNAnimatedSplash.podspec -------------------------------------------------------------------------------- /ios/RNAnimatedSplash.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/ios/RNAnimatedSplash.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/RNAnimatedSplash.xcodeproj/xcshareddata/xcschemes/RNAnimatedSplash.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/ios/RNAnimatedSplash.xcodeproj/xcshareddata/xcschemes/RNAnimatedSplash.xcscheme -------------------------------------------------------------------------------- /ios/RNAnimatedSplash.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/ios/RNAnimatedSplash.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/RNAnimatedSplash.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/ios/RNAnimatedSplash.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /iosDescription.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/iosDescription.md -------------------------------------------------------------------------------- /iosexample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/iosexample.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blitz-Mobile-Apps/react-native-animated-splash/HEAD/package.json --------------------------------------------------------------------------------