├── .deepsource.toml ├── .gitignore ├── .npmignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── add-LaunchScreen-tutorial-for-ios.md ├── android ├── .npmignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── org │ │ └── devio │ │ └── rn │ │ └── splashscreen │ │ ├── SplashScreen.java │ │ ├── SplashScreenModule.java │ │ └── SplashScreenReactPackage.java │ └── res │ └── values │ ├── refs.xml │ ├── strings.xml │ └── styles.xml ├── examples ├── .buckconfig ├── .bundle │ └── config ├── .eslintrc.js ├── .flowconfig ├── .gitignore ├── .prettierrc.js ├── .ruby-version ├── .watchmanconfig ├── App.js ├── Gemfile ├── __tests__ │ └── App-test.js ├── android │ ├── app │ │ ├── _BUCK │ │ ├── build.gradle │ │ ├── build_defs.bzl │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── examples │ │ │ │ └── ReactNativeFlipper.java │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── examples │ │ │ │ ├── MainActivity.java │ │ │ │ ├── MainApplication.java │ │ │ │ └── newarchitecture │ │ │ │ ├── MainApplicationReactNativeHost.java │ │ │ │ ├── components │ │ │ │ └── MainComponentsRegistry.java │ │ │ │ └── modules │ │ │ │ └── MainApplicationTurboModuleManagerDelegate.java │ │ │ ├── jni │ │ │ ├── Android.mk │ │ │ ├── MainApplicationModuleProvider.cpp │ │ │ ├── MainApplicationModuleProvider.h │ │ │ ├── MainApplicationTurboModuleManagerDelegate.cpp │ │ │ ├── MainApplicationTurboModuleManagerDelegate.h │ │ │ ├── MainComponentsRegistry.cpp │ │ │ ├── MainComponentsRegistry.h │ │ │ └── OnLoad.cpp │ │ │ └── res │ │ │ ├── drawable │ │ │ └── rn_edit_text_material.xml │ │ │ ├── layout │ │ │ └── launch_screen.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── raw │ │ │ └── loading.json │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ └── settings.gradle ├── app.json ├── babel.config.js ├── index.js ├── ios │ ├── .xcode.env │ ├── Dynamic.swift │ ├── Podfile │ ├── Podfile.lock │ ├── examples-Bridging-Header.h │ ├── examples.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── examples.xcscheme │ ├── examples.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── examples │ │ ├── AppDelegate.h │ │ ├── AppDelegate.mm │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── main.m │ └── examplesTests │ │ ├── Info.plist │ │ └── examplesTests.m ├── metro.config.js ├── package.json └── yarn.lock ├── img ├── 2022-07-09-16-40-46.png └── 2022-07-09-16-41-45.png ├── index.d.ts ├── index.js ├── ios ├── .DS_Store ├── Dynamic.swift ├── RNSplashScreen.h ├── RNSplashScreen.m └── SplashScreen.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ ├── penn.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ └── taehyun.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ ├── penn.xcuserdatad │ └── xcschemes │ │ ├── SplashScreen.xcscheme │ │ └── xcschememanagement.plist │ └── taehyun.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── issue_template.md ├── package.json ├── react-native-lottie-splash-screen.podspec ├── screenshot ├── Lottie-Splash-Screen-Android.gif ├── Lottie-Splash-Screen-IOS.gif ├── apply-Launchscreen.jpg ├── apply-image-set.jpg ├── new-LaunchScreen-image-set.jpg └── new-LaunchScreen-storyboard.jpg └── yarn.lock /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/.npmignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/README.md -------------------------------------------------------------------------------- /add-LaunchScreen-tutorial-for-ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/add-LaunchScreen-tutorial-for-ios.md -------------------------------------------------------------------------------- /android/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/android/.npmignore -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/android/proguard-rules.pro -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/java/org/devio/rn/splashscreen/SplashScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/android/src/main/java/org/devio/rn/splashscreen/SplashScreen.java -------------------------------------------------------------------------------- /android/src/main/java/org/devio/rn/splashscreen/SplashScreenModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/android/src/main/java/org/devio/rn/splashscreen/SplashScreenModule.java -------------------------------------------------------------------------------- /android/src/main/java/org/devio/rn/splashscreen/SplashScreenReactPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/android/src/main/java/org/devio/rn/splashscreen/SplashScreenReactPackage.java -------------------------------------------------------------------------------- /android/src/main/res/values/refs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/android/src/main/res/values/refs.xml -------------------------------------------------------------------------------- /android/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/android/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/android/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /examples/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/.buckconfig -------------------------------------------------------------------------------- /examples/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/.bundle/config -------------------------------------------------------------------------------- /examples/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /examples/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/.flowconfig -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/.gitignore -------------------------------------------------------------------------------- /examples/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/.prettierrc.js -------------------------------------------------------------------------------- /examples/.ruby-version: -------------------------------------------------------------------------------- 1 | 2.7.5 2 | -------------------------------------------------------------------------------- /examples/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/App.js -------------------------------------------------------------------------------- /examples/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/Gemfile -------------------------------------------------------------------------------- /examples/__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/__tests__/App-test.js -------------------------------------------------------------------------------- /examples/android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/android/app/_BUCK -------------------------------------------------------------------------------- /examples/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/android/app/build.gradle -------------------------------------------------------------------------------- /examples/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/android/app/build_defs.bzl -------------------------------------------------------------------------------- /examples/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/android/app/debug.keystore -------------------------------------------------------------------------------- /examples/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /examples/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /examples/android/app/src/debug/java/com/examples/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/android/app/src/debug/java/com/examples/ReactNativeFlipper.java -------------------------------------------------------------------------------- /examples/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /examples/android/app/src/main/java/com/examples/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/android/app/src/main/java/com/examples/MainActivity.java -------------------------------------------------------------------------------- /examples/android/app/src/main/java/com/examples/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/android/app/src/main/java/com/examples/MainApplication.java -------------------------------------------------------------------------------- /examples/android/app/src/main/java/com/examples/newarchitecture/MainApplicationReactNativeHost.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/android/app/src/main/java/com/examples/newarchitecture/MainApplicationReactNativeHost.java -------------------------------------------------------------------------------- /examples/android/app/src/main/java/com/examples/newarchitecture/components/MainComponentsRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/android/app/src/main/java/com/examples/newarchitecture/components/MainComponentsRegistry.java -------------------------------------------------------------------------------- /examples/android/app/src/main/java/com/examples/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/android/app/src/main/java/com/examples/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java -------------------------------------------------------------------------------- /examples/android/app/src/main/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/android/app/src/main/jni/Android.mk -------------------------------------------------------------------------------- /examples/android/app/src/main/jni/MainApplicationModuleProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/android/app/src/main/jni/MainApplicationModuleProvider.cpp -------------------------------------------------------------------------------- /examples/android/app/src/main/jni/MainApplicationModuleProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/android/app/src/main/jni/MainApplicationModuleProvider.h -------------------------------------------------------------------------------- /examples/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp -------------------------------------------------------------------------------- /examples/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h -------------------------------------------------------------------------------- /examples/android/app/src/main/jni/MainComponentsRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/android/app/src/main/jni/MainComponentsRegistry.cpp -------------------------------------------------------------------------------- /examples/android/app/src/main/jni/MainComponentsRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/android/app/src/main/jni/MainComponentsRegistry.h -------------------------------------------------------------------------------- /examples/android/app/src/main/jni/OnLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/android/app/src/main/jni/OnLoad.cpp -------------------------------------------------------------------------------- /examples/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /examples/android/app/src/main/res/layout/launch_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/android/app/src/main/res/layout/launch_screen.xml -------------------------------------------------------------------------------- /examples/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/android/app/src/main/res/raw/loading.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/android/app/src/main/res/raw/loading.json -------------------------------------------------------------------------------- /examples/android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /examples/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /examples/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /examples/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/android/build.gradle -------------------------------------------------------------------------------- /examples/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/android/gradle.properties -------------------------------------------------------------------------------- /examples/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/android/settings.gradle -------------------------------------------------------------------------------- /examples/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/app.json -------------------------------------------------------------------------------- /examples/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/babel.config.js -------------------------------------------------------------------------------- /examples/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/index.js -------------------------------------------------------------------------------- /examples/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/ios/.xcode.env -------------------------------------------------------------------------------- /examples/ios/Dynamic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/ios/Dynamic.swift -------------------------------------------------------------------------------- /examples/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/ios/Podfile -------------------------------------------------------------------------------- /examples/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/ios/Podfile.lock -------------------------------------------------------------------------------- /examples/ios/examples-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/ios/examples-Bridging-Header.h -------------------------------------------------------------------------------- /examples/ios/examples.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/ios/examples.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/ios/examples.xcodeproj/xcshareddata/xcschemes/examples.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/ios/examples.xcodeproj/xcshareddata/xcschemes/examples.xcscheme -------------------------------------------------------------------------------- /examples/ios/examples.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/ios/examples.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /examples/ios/examples.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/ios/examples.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /examples/ios/examples/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/ios/examples/AppDelegate.h -------------------------------------------------------------------------------- /examples/ios/examples/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/ios/examples/AppDelegate.mm -------------------------------------------------------------------------------- /examples/ios/examples/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/ios/examples/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /examples/ios/examples/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/ios/examples/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /examples/ios/examples/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/ios/examples/Info.plist -------------------------------------------------------------------------------- /examples/ios/examples/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/ios/examples/LaunchScreen.storyboard -------------------------------------------------------------------------------- /examples/ios/examples/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/ios/examples/main.m -------------------------------------------------------------------------------- /examples/ios/examplesTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/ios/examplesTests/Info.plist -------------------------------------------------------------------------------- /examples/ios/examplesTests/examplesTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/ios/examplesTests/examplesTests.m -------------------------------------------------------------------------------- /examples/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/metro.config.js -------------------------------------------------------------------------------- /examples/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/package.json -------------------------------------------------------------------------------- /examples/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/examples/yarn.lock -------------------------------------------------------------------------------- /img/2022-07-09-16-40-46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/img/2022-07-09-16-40-46.png -------------------------------------------------------------------------------- /img/2022-07-09-16-41-45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/img/2022-07-09-16-41-45.png -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/index.js -------------------------------------------------------------------------------- /ios/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/ios/.DS_Store -------------------------------------------------------------------------------- /ios/Dynamic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/ios/Dynamic.swift -------------------------------------------------------------------------------- /ios/RNSplashScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/ios/RNSplashScreen.h -------------------------------------------------------------------------------- /ios/RNSplashScreen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/ios/RNSplashScreen.m -------------------------------------------------------------------------------- /ios/SplashScreen.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/ios/SplashScreen.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/SplashScreen.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/ios/SplashScreen.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/SplashScreen.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/ios/SplashScreen.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/SplashScreen.xcodeproj/project.xcworkspace/xcuserdata/penn.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/ios/SplashScreen.xcodeproj/project.xcworkspace/xcuserdata/penn.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ios/SplashScreen.xcodeproj/project.xcworkspace/xcuserdata/taehyun.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/ios/SplashScreen.xcodeproj/project.xcworkspace/xcuserdata/taehyun.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ios/SplashScreen.xcodeproj/xcuserdata/penn.xcuserdatad/xcschemes/SplashScreen.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/ios/SplashScreen.xcodeproj/xcuserdata/penn.xcuserdatad/xcschemes/SplashScreen.xcscheme -------------------------------------------------------------------------------- /ios/SplashScreen.xcodeproj/xcuserdata/penn.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/ios/SplashScreen.xcodeproj/xcuserdata/penn.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ios/SplashScreen.xcodeproj/xcuserdata/taehyun.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/ios/SplashScreen.xcodeproj/xcuserdata/taehyun.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/issue_template.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/package.json -------------------------------------------------------------------------------- /react-native-lottie-splash-screen.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/react-native-lottie-splash-screen.podspec -------------------------------------------------------------------------------- /screenshot/Lottie-Splash-Screen-Android.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/screenshot/Lottie-Splash-Screen-Android.gif -------------------------------------------------------------------------------- /screenshot/Lottie-Splash-Screen-IOS.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/screenshot/Lottie-Splash-Screen-IOS.gif -------------------------------------------------------------------------------- /screenshot/apply-Launchscreen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/screenshot/apply-Launchscreen.jpg -------------------------------------------------------------------------------- /screenshot/apply-image-set.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/screenshot/apply-image-set.jpg -------------------------------------------------------------------------------- /screenshot/new-LaunchScreen-image-set.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/screenshot/new-LaunchScreen-image-set.jpg -------------------------------------------------------------------------------- /screenshot/new-LaunchScreen-storyboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/screenshot/new-LaunchScreen-storyboard.jpg -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HwangTaehyun/react-native-lottie-splash-screen/HEAD/yarn.lock --------------------------------------------------------------------------------