Home > Software design >  How to add Buttons in Title Bar in PWA (Web Apps)
How to add Buttons in Title Bar in PWA (Web Apps)

Time:05-17

How do I add these buttons (Back and Refresh) in PWA? Note: I am not looking to add these buttons in my UI. it's in the title bar, which is controlled by browser.

OneDrive PWA

CodePudding user response:

In manifest.json. Update the display property like this

"display": "minimal-ui",

Earlier it could have been standalone.

  • Related