gitextract_wmxtn4cd/ ├── .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 │ │ │ ├── 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 │ │ ├── examples/ │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.mm │ │ │ ├── Images.xcassets/ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ └── main.m │ │ ├── examples-Bridging-Header.h │ │ ├── examples.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata/ │ │ │ └── xcschemes/ │ │ │ └── examples.xcscheme │ │ ├── examples.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── examplesTests/ │ │ ├── Info.plist │ │ └── examplesTests.m │ ├── metro.config.js │ └── package.json ├── index.d.ts ├── index.js ├── ios/ │ ├── 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