0

We have a web app that is added to the home screen of an iPad for a more "App like" user experience. It was working perfectly until the most recent iPadOS update which has been causing problems with the UI. Now when the user navigates, a minimal version of the safari toolbar appears ipad issue I've since attempted to fix this issue by adding a manifest.json with the display":"fullscreen", property

{
  "name": "1WSQ",
  "short_name": "1WSQ",
  "description": "1WSQ APP",
  "display": "fullscreen",
  "start_url": "/?homescreen=1",
  "background_color": "#000000",
  "theme_color": "#0f4a73",
  "icons": [
    {
      "src": "touch-icon-ipad-retina.png",
      "sizes": "256x256",
      "type": "image/png"
    }
  ]
}

Any other ideas on how this can be prevented would be much appreciated.

Spencer Fink
  • 149
  • 1
  • 11
  • Does this answer your question? [How can I hide the new url bar on iPad Safari WebApp fullscreen mode, appearing since iPadOS 13?](https://stackoverflow.com/questions/58393922/how-can-i-hide-the-new-url-bar-on-ipad-safari-webapp-fullscreen-mode-appearing) – bvpb Jan 10 '20 at 05:18

1 Answers1

0

Try "display": "standalone" manifest.json documentation

It's working for me on iPadOS 13.3

bvpb
  • 1,416
  • 22
  • 31
  • Turns out this question might be a duplicate of https://stackoverflow.com/questions/58393922/how-can-i-hide-the-new-url-bar-on-ipad-safari-webapp-fullscreen-mode-appearing/58507634#58507634 – bvpb Jan 10 '20 at 05:19