How to add Buttons in Title Bar in PWA (Web Apps)

Viewed 60

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

1 Answers

In manifest.json. Update the display property like this

"display": "minimal-ui",

Earlier it could have been standalone.

Related