├── .bundle └── config ├── .eslintrc.js ├── .gitignore ├── .node-version ├── .prettierrc.js ├── .ruby-version ├── .watchmanconfig ├── App.tsx ├── Gemfile ├── Gemfile.lock ├── __tests__ └── App-test.tsx ├── android ├── app │ ├── build.gradle │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── lottiebootsplash │ │ │ └── ReactNativeFlipper.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── lottiebootsplash │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ └── res │ │ │ ├── drawable │ │ │ └── rn_edit_text_material.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── bootsplash_logo.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── bootsplash_logo.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── bootsplash_logo.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── bootsplash_logo.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── bootsplash_logo.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── release │ │ └── java │ │ └── com │ │ └── lottiebootsplash │ │ └── ReactNativeFlipper.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── assets ├── bootsplash_logo.png ├── bootsplash_logo@1,5x.png ├── bootsplash_logo@2x.png ├── bootsplash_logo@3x.png ├── bootsplash_logo@4x.png ├── bootsplash_logo_original.svg └── lottie_animation.json ├── babel.config.js ├── index.js ├── ios ├── .xcode.env ├── LottieBootSplash.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── LottieBootSplash.xcscheme ├── LottieBootSplash.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── LottieBootSplash │ ├── AppDelegate.h │ ├── AppDelegate.mm │ ├── BootSplash.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── BootSplashLogo.imageset │ │ │ ├── Contents.json │ │ │ ├── bootsplash_logo.png │ │ │ ├── bootsplash_logo@2x.png │ │ │ └── bootsplash_logo@3x.png │ │ └── Contents.json │ ├── Info.plist │ └── main.m ├── LottieBootSplashTests │ ├── Info.plist │ └── LottieBootSplashTests.m ├── Podfile └── Podfile.lock ├── metro.config.js ├── package.json ├── tsconfig.json └── yarn.lock /.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/.bundle/config -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 18 2 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.7.6 2 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/App.tsx -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /__tests__/App-test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/__tests__/App-test.tsx -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/java/com/lottiebootsplash/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/android/app/src/debug/java/com/lottiebootsplash/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/lottiebootsplash/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/android/app/src/main/java/com/lottiebootsplash/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/lottiebootsplash/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/android/app/src/main/java/com/lottiebootsplash/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/bootsplash_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/android/app/src/main/res/mipmap-hdpi/bootsplash_logo.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/bootsplash_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/android/app/src/main/res/mipmap-mdpi/bootsplash_logo.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/bootsplash_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/android/app/src/main/res/mipmap-xhdpi/bootsplash_logo.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/bootsplash_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/android/app/src/main/res/mipmap-xxhdpi/bootsplash_logo.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/bootsplash_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/android/app/src/main/res/mipmap-xxxhdpi/bootsplash_logo.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/release/java/com/lottiebootsplash/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/android/app/src/release/java/com/lottiebootsplash/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/app.json -------------------------------------------------------------------------------- /assets/bootsplash_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/assets/bootsplash_logo.png -------------------------------------------------------------------------------- /assets/bootsplash_logo@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/assets/bootsplash_logo@1,5x.png -------------------------------------------------------------------------------- /assets/bootsplash_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/assets/bootsplash_logo@2x.png -------------------------------------------------------------------------------- /assets/bootsplash_logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/assets/bootsplash_logo@3x.png -------------------------------------------------------------------------------- /assets/bootsplash_logo@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/assets/bootsplash_logo@4x.png -------------------------------------------------------------------------------- /assets/bootsplash_logo_original.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/assets/bootsplash_logo_original.svg -------------------------------------------------------------------------------- /assets/lottie_animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/assets/lottie_animation.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/index.js -------------------------------------------------------------------------------- /ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/ios/.xcode.env -------------------------------------------------------------------------------- /ios/LottieBootSplash.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/ios/LottieBootSplash.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/LottieBootSplash.xcodeproj/xcshareddata/xcschemes/LottieBootSplash.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/ios/LottieBootSplash.xcodeproj/xcshareddata/xcschemes/LottieBootSplash.xcscheme -------------------------------------------------------------------------------- /ios/LottieBootSplash.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/ios/LottieBootSplash.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/LottieBootSplash.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/ios/LottieBootSplash.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/LottieBootSplash/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/ios/LottieBootSplash/AppDelegate.h -------------------------------------------------------------------------------- /ios/LottieBootSplash/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/ios/LottieBootSplash/AppDelegate.mm -------------------------------------------------------------------------------- /ios/LottieBootSplash/BootSplash.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/ios/LottieBootSplash/BootSplash.storyboard -------------------------------------------------------------------------------- /ios/LottieBootSplash/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/ios/LottieBootSplash/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/LottieBootSplash/Images.xcassets/BootSplashLogo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/ios/LottieBootSplash/Images.xcassets/BootSplashLogo.imageset/Contents.json -------------------------------------------------------------------------------- /ios/LottieBootSplash/Images.xcassets/BootSplashLogo.imageset/bootsplash_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/ios/LottieBootSplash/Images.xcassets/BootSplashLogo.imageset/bootsplash_logo.png -------------------------------------------------------------------------------- /ios/LottieBootSplash/Images.xcassets/BootSplashLogo.imageset/bootsplash_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/ios/LottieBootSplash/Images.xcassets/BootSplashLogo.imageset/bootsplash_logo@2x.png -------------------------------------------------------------------------------- /ios/LottieBootSplash/Images.xcassets/BootSplashLogo.imageset/bootsplash_logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/ios/LottieBootSplash/Images.xcassets/BootSplashLogo.imageset/bootsplash_logo@3x.png -------------------------------------------------------------------------------- /ios/LottieBootSplash/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/ios/LottieBootSplash/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/LottieBootSplash/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/ios/LottieBootSplash/Info.plist -------------------------------------------------------------------------------- /ios/LottieBootSplash/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/ios/LottieBootSplash/main.m -------------------------------------------------------------------------------- /ios/LottieBootSplashTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/ios/LottieBootSplashTests/Info.plist -------------------------------------------------------------------------------- /ios/LottieBootSplashTests/LottieBootSplashTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/ios/LottieBootSplashTests/LottieBootSplashTests.m -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoontek/react-native-bootsplash-lottie-example/HEAD/yarn.lock --------------------------------------------------------------------------------