Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save arekbartnik/e9bad975d635659f8b40b4cc8aa94673 to your computer and use it in GitHub Desktop.
Save arekbartnik/e9bad975d635659f8b40b4cc8aa94673 to your computer and use it in GitHub Desktop.
// return true if the Web App is running as PWA (installed)
const isPWA = () => (
matchMedia('(display-mode: standalone)').matches ||
navigator.standalone ||
document.referrer.includes('android-app://')
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment