pwa-module
pwa-module copied to clipboard
How to add a bottom navigation in PWA only?
I want to add a back button which will be visible and actionable for pwa only, not the website.
Take a look on the internet :)
https://petelepage.com/blog/2020/08/measure-understand-how-installed-pwa-users-differ-from-browser-tab-users/
const mqStandAlone = '(display-mode: standalone)'
if (navigator && window) {
if (navigator.standalone || window.matchMedia(mqStandAlone).matches) {
this.pwa = true
}
}
Thanks