├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── config.yml ├── actions │ └── setup │ │ └── action.yml └── workflows │ └── ci.yml ├── .gitignore ├── .nvmrc ├── .watchmanconfig ├── .yarn ├── plugins │ └── @yarnpkg │ │ ├── plugin-interactive-tools.cjs │ │ └── plugin-workspace-tools.cjs └── releases │ └── yarn-3.6.1.cjs ├── .yarnrc.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SplashView.podspec ├── android ├── build.gradle ├── gradle.properties └── src │ ├── main │ ├── AndroidManifest.xml │ ├── AndroidManifestNew.xml │ ├── java │ │ └── com │ │ │ └── splashview │ │ │ ├── SplashView.kt │ │ │ └── SplashViewPackage.kt │ └── res │ │ └── values │ │ ├── refs.xml │ │ └── styles.xml │ ├── newarch │ └── java │ │ └── com │ │ └── splashview │ │ └── SplashViewModuleNew.kt │ └── oldarch │ └── java │ └── com │ └── splashview │ └── SplashViewModuleOld.kt ├── babel.config.js ├── example ├── .bundle │ └── config ├── .watchmanconfig ├── Gemfile ├── Gemfile.lock ├── README.md ├── android │ ├── app │ │ ├── build.gradle │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── splashview │ │ │ │ └── example │ │ │ │ ├── MainActivity.kt │ │ │ │ └── MainApplication.kt │ │ │ └── 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 │ │ │ └── values │ │ │ ├── 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 │ ├── .xcode.env │ ├── Podfile │ ├── Podfile.lock │ ├── SplashView-Bridging-Header.h │ ├── SplashViewExample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── SplashViewExample.xcscheme │ ├── SplashViewExample.xcworkspace │ │ └── contents.xcworkspacedata │ └── SplashViewExample │ │ ├── AppDelegate.swift │ │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── PrivacyInfo.xcprivacy ├── jest.config.js ├── metro.config.js ├── package.json ├── react-native.config.js └── src │ └── App.tsx ├── ios ├── SplashView-Bridging-Header.h ├── SplashView.h └── SplashView.mm ├── lefthook.yml ├── package.json ├── react-native-splash-view+0.0.15.patch ├── react-native.config.js ├── src ├── NativeSplashView.ts ├── __tests__ │ └── index.test.tsx └── index.tsx ├── tsconfig.build.json ├── tsconfig.json ├── turbo.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/actions/setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/.github/actions/setup/action.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v20 2 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.6.1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/.yarn/releases/yarn-3.6.1.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/README.md -------------------------------------------------------------------------------- /SplashView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/SplashView.podspec -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/AndroidManifestNew.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/android/src/main/AndroidManifestNew.xml -------------------------------------------------------------------------------- /android/src/main/java/com/splashview/SplashView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/android/src/main/java/com/splashview/SplashView.kt -------------------------------------------------------------------------------- /android/src/main/java/com/splashview/SplashViewPackage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/android/src/main/java/com/splashview/SplashViewPackage.kt -------------------------------------------------------------------------------- /android/src/main/res/values/refs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/android/src/main/res/values/refs.xml -------------------------------------------------------------------------------- /android/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/android/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/src/newarch/java/com/splashview/SplashViewModuleNew.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/android/src/newarch/java/com/splashview/SplashViewModuleNew.kt -------------------------------------------------------------------------------- /android/src/oldarch/java/com/splashview/SplashViewModuleOld.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/android/src/oldarch/java/com/splashview/SplashViewModuleOld.kt -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/babel.config.js -------------------------------------------------------------------------------- /example/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/.bundle/config -------------------------------------------------------------------------------- /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/Gemfile -------------------------------------------------------------------------------- /example/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/Gemfile.lock -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/README.md -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/android/app/debug.keystore -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/splashview/example/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/android/app/src/main/java/splashview/example/MainActivity.kt -------------------------------------------------------------------------------- /example/android/app/src/main/java/splashview/example/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/android/app/src/main/java/splashview/example/MainApplication.kt -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/layout/launch_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/android/app/src/main/res/layout/launch_screen.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/app.json -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/index.js -------------------------------------------------------------------------------- /example/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/ios/.xcode.env -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/ios/SplashView-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | 2 | #import "SplashView.h" 3 | 4 | -------------------------------------------------------------------------------- /example/ios/SplashViewExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/ios/SplashViewExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/SplashViewExample.xcodeproj/xcshareddata/xcschemes/SplashViewExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/ios/SplashViewExample.xcodeproj/xcshareddata/xcschemes/SplashViewExample.xcscheme -------------------------------------------------------------------------------- /example/ios/SplashViewExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/ios/SplashViewExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/SplashViewExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/ios/SplashViewExample/AppDelegate.swift -------------------------------------------------------------------------------- /example/ios/SplashViewExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/ios/SplashViewExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/SplashViewExample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/ios/SplashViewExample/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /example/ios/SplashViewExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/ios/SplashViewExample/Info.plist -------------------------------------------------------------------------------- /example/ios/SplashViewExample/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/ios/SplashViewExample/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/SplashViewExample/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/ios/SplashViewExample/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /example/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/package.json -------------------------------------------------------------------------------- /example/react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/react-native.config.js -------------------------------------------------------------------------------- /example/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/example/src/App.tsx -------------------------------------------------------------------------------- /ios/SplashView-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/ios/SplashView-Bridging-Header.h -------------------------------------------------------------------------------- /ios/SplashView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/ios/SplashView.h -------------------------------------------------------------------------------- /ios/SplashView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/ios/SplashView.mm -------------------------------------------------------------------------------- /lefthook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/lefthook.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/package.json -------------------------------------------------------------------------------- /react-native-splash-view+0.0.15.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/react-native-splash-view+0.0.15.patch -------------------------------------------------------------------------------- /react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/react-native.config.js -------------------------------------------------------------------------------- /src/NativeSplashView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/src/NativeSplashView.ts -------------------------------------------------------------------------------- /src/__tests__/index.test.tsx: -------------------------------------------------------------------------------- 1 | it.todo('write a test'); 2 | -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/src/index.tsx -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/tsconfig.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/turbo.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagnesh/react-native-splash-view/HEAD/yarn.lock --------------------------------------------------------------------------------