Splash Screen

Splash Screen

Replace the splash file in the following location with your own splash screen

    • splash.png
  • ℹ️

    Use only transparent (or plain background) image with dimmentions 1080x1920

    Additional Changes (Optional)

    If you want to use custom background color for splash screen or make splash screen fullscreen, modify the app.json file as follows:

    app.json
    {
       "expo": {
           "name": "Reward Studio",
           "slug": "reward-studio",
           "version": "3.2.0",
           "orientation": "portrait",
           "icon": "./assets/icon.png",
           "userInterfaceStyle": "automatic",
           "splash": {
               "image": "./assets/splash.png",
               "resizeMode": "contain", // change this to "cover" if you don't want to use background color
               "backgroundColor": "#222B45" // change this to your custom background color
           },
           "updates": {
           "fallbackToCacheTimeout": 0
           },
           "assetBundlePatterns": [
           "**/*"
           ],
           // ...
       }
    }