#NextJS13 -> PWA, and splash screen

2 messages · Page 1 of 1 (latest)

sullen spruce
#

I'm trying to get my splash screen working, and the mdn docs say that all a manifest.json needs in it to let iOS create the splash screen is:

However, i have those elements covered in my manifest.json:

{
  "id": "/",
  "name": "Excercise Tracker",
  "description": "Quick Utility to log exercise",
  "short_name": "exTracker",
  "theme_color": "#2196f3",
  "background_color": "#ffffff",
  "display": "standalone",
  "orientation": "portrait",
  "scope": "/",
  "start_url": "/",
  "icons": [
    {
      "src": "/icon.png",
      "sizes": "512x512",
      "type": "image/png",
      "purpose": "any"
    },
    {
      "src": "/portrait.png",
      "sizes": "1170x2532",
      "type": "image/png",
      "purpose": "any"
    }
  ],

  "screenshots": [
    {
      "src": "./portrait.png",
      "sizes": "1170x2532",
      "type": "image/png"
    }
  ]
}

just trying to understand what's missing so i get a nice splashscreen for my app on iOS

jolly fogBOT
#

🔎 This post has been indexed in our web forum and will be seen by search engines so other users can find it outside Discord

🕵️ Your user profile is private by default and won't be visible to users outside Discord, if you want to be visible in the web forum you can add the "Public Profile" role in id:customize

✅ You can mark a message as the answer for your post with Right click -> Apps -> Mark Solution
(if you don't see the option, try refreshing Discord with Ctrl + R)