├── .buckconfig ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App.js ├── README.md ├── __tests__ └── App-test.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── rn_splashscreen_tutorial │ │ │ ├── MainActivity.java │ │ │ ├── MainApplication.java │ │ │ └── SplashActivity.java │ │ └── res │ │ ├── drawable │ │ └── background_splash.xml │ │ ├── layout │ │ └── launch_screen.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── splash_icon.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── splash_icon.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── splash_icon.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── splash_icon.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── splash_icon.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── assets ├── screenshots │ ├── android_video_01.gif │ ├── android_video_02.gif │ ├── ios_image_01.png │ ├── ios_image_02.png │ ├── ios_image_03.png │ ├── ios_image_04.png │ ├── ios_image_05.png │ ├── ios_image_06.png │ ├── ios_image_07.png │ ├── ios_image_08.png │ ├── ios_image_10.png │ ├── ios_video_01.gif │ ├── ios_video_02.gif │ ├── rn_image_01.png │ └── rn_image_02.png └── splash_icon │ ├── splash_icon.png │ ├── splash_icon@2x.png │ └── splash_icon@3x.png ├── babel.config.js ├── index.js ├── ios ├── Podfile ├── Podfile.lock ├── rn_splashscreen_tutorial-tvOS │ └── Info.plist ├── rn_splashscreen_tutorial-tvOSTests │ └── Info.plist ├── rn_splashscreen_tutorial.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── rn_splashscreen_tutorial-tvOS.xcscheme │ │ └── rn_splashscreen_tutorial.xcscheme ├── rn_splashscreen_tutorial.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── rn_splashscreen_tutorial │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── SplashIcon.imageset │ │ │ ├── Contents.json │ │ │ ├── splash_icon.png │ │ │ ├── splash_icon@2x.png │ │ │ └── splash_icon@3x.png │ ├── Info.plist │ └── main.m └── rn_splashscreen_tutorialTests │ ├── Info.plist │ └── rn_splashscreen_tutorialTests.m ├── metro.config.js ├── package.json └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/App.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/__tests__/App-test.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/rn_splashscreen_tutorial/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/android/app/src/main/java/com/rn_splashscreen_tutorial/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/rn_splashscreen_tutorial/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/android/app/src/main/java/com/rn_splashscreen_tutorial/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/rn_splashscreen_tutorial/SplashActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/android/app/src/main/java/com/rn_splashscreen_tutorial/SplashActivity.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/background_splash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/android/app/src/main/res/drawable/background_splash.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/launch_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/android/app/src/main/res/layout/launch_screen.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/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/appstud/react-native-splashscreen-tutorial/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/splash_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/android/app/src/main/res/mipmap-hdpi/splash_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/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/appstud/react-native-splashscreen-tutorial/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/splash_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/android/app/src/main/res/mipmap-mdpi/splash_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/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/appstud/react-native-splashscreen-tutorial/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/splash_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/android/app/src/main/res/mipmap-xhdpi/splash_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/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/appstud/react-native-splashscreen-tutorial/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/splash_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/android/app/src/main/res/mipmap-xxhdpi/splash_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/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/appstud/react-native-splashscreen-tutorial/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/splash_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/android/app/src/main/res/mipmap-xxxhdpi/splash_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/app.json -------------------------------------------------------------------------------- /assets/screenshots/android_video_01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/assets/screenshots/android_video_01.gif -------------------------------------------------------------------------------- /assets/screenshots/android_video_02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/assets/screenshots/android_video_02.gif -------------------------------------------------------------------------------- /assets/screenshots/ios_image_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/assets/screenshots/ios_image_01.png -------------------------------------------------------------------------------- /assets/screenshots/ios_image_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/assets/screenshots/ios_image_02.png -------------------------------------------------------------------------------- /assets/screenshots/ios_image_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/assets/screenshots/ios_image_03.png -------------------------------------------------------------------------------- /assets/screenshots/ios_image_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/assets/screenshots/ios_image_04.png -------------------------------------------------------------------------------- /assets/screenshots/ios_image_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/assets/screenshots/ios_image_05.png -------------------------------------------------------------------------------- /assets/screenshots/ios_image_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/assets/screenshots/ios_image_06.png -------------------------------------------------------------------------------- /assets/screenshots/ios_image_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/assets/screenshots/ios_image_07.png -------------------------------------------------------------------------------- /assets/screenshots/ios_image_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/assets/screenshots/ios_image_08.png -------------------------------------------------------------------------------- /assets/screenshots/ios_image_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/assets/screenshots/ios_image_10.png -------------------------------------------------------------------------------- /assets/screenshots/ios_video_01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/assets/screenshots/ios_video_01.gif -------------------------------------------------------------------------------- /assets/screenshots/ios_video_02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/assets/screenshots/ios_video_02.gif -------------------------------------------------------------------------------- /assets/screenshots/rn_image_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/assets/screenshots/rn_image_01.png -------------------------------------------------------------------------------- /assets/screenshots/rn_image_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/assets/screenshots/rn_image_02.png -------------------------------------------------------------------------------- /assets/splash_icon/splash_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/assets/splash_icon/splash_icon.png -------------------------------------------------------------------------------- /assets/splash_icon/splash_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/assets/splash_icon/splash_icon@2x.png -------------------------------------------------------------------------------- /assets/splash_icon/splash_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/assets/splash_icon/splash_icon@3x.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/index.js -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/rn_splashscreen_tutorial-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/ios/rn_splashscreen_tutorial-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/rn_splashscreen_tutorial-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/ios/rn_splashscreen_tutorial-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/rn_splashscreen_tutorial.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/ios/rn_splashscreen_tutorial.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/rn_splashscreen_tutorial.xcodeproj/xcshareddata/xcschemes/rn_splashscreen_tutorial-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/ios/rn_splashscreen_tutorial.xcodeproj/xcshareddata/xcschemes/rn_splashscreen_tutorial-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/rn_splashscreen_tutorial.xcodeproj/xcshareddata/xcschemes/rn_splashscreen_tutorial.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/ios/rn_splashscreen_tutorial.xcodeproj/xcshareddata/xcschemes/rn_splashscreen_tutorial.xcscheme -------------------------------------------------------------------------------- /ios/rn_splashscreen_tutorial.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/ios/rn_splashscreen_tutorial.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/rn_splashscreen_tutorial.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/ios/rn_splashscreen_tutorial.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/rn_splashscreen_tutorial/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/ios/rn_splashscreen_tutorial/AppDelegate.h -------------------------------------------------------------------------------- /ios/rn_splashscreen_tutorial/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/ios/rn_splashscreen_tutorial/AppDelegate.m -------------------------------------------------------------------------------- /ios/rn_splashscreen_tutorial/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/ios/rn_splashscreen_tutorial/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/rn_splashscreen_tutorial/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/ios/rn_splashscreen_tutorial/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/rn_splashscreen_tutorial/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/ios/rn_splashscreen_tutorial/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/rn_splashscreen_tutorial/Images.xcassets/SplashIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/ios/rn_splashscreen_tutorial/Images.xcassets/SplashIcon.imageset/Contents.json -------------------------------------------------------------------------------- /ios/rn_splashscreen_tutorial/Images.xcassets/SplashIcon.imageset/splash_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/ios/rn_splashscreen_tutorial/Images.xcassets/SplashIcon.imageset/splash_icon.png -------------------------------------------------------------------------------- /ios/rn_splashscreen_tutorial/Images.xcassets/SplashIcon.imageset/splash_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/ios/rn_splashscreen_tutorial/Images.xcassets/SplashIcon.imageset/splash_icon@2x.png -------------------------------------------------------------------------------- /ios/rn_splashscreen_tutorial/Images.xcassets/SplashIcon.imageset/splash_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/ios/rn_splashscreen_tutorial/Images.xcassets/SplashIcon.imageset/splash_icon@3x.png -------------------------------------------------------------------------------- /ios/rn_splashscreen_tutorial/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/ios/rn_splashscreen_tutorial/Info.plist -------------------------------------------------------------------------------- /ios/rn_splashscreen_tutorial/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/ios/rn_splashscreen_tutorial/main.m -------------------------------------------------------------------------------- /ios/rn_splashscreen_tutorialTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/ios/rn_splashscreen_tutorialTests/Info.plist -------------------------------------------------------------------------------- /ios/rn_splashscreen_tutorialTests/rn_splashscreen_tutorialTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/ios/rn_splashscreen_tutorialTests/rn_splashscreen_tutorialTests.m -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstud/react-native-splashscreen-tutorial/HEAD/yarn.lock --------------------------------------------------------------------------------