I was wondering if it\'s possible to detect if an iOS user is using the webapp, or just visiting the normal way with safari browser.
The reason I want to achieve is tha
iOS and Chrome WebApp behaves different, thats the reason i came to following:
isInWebAppiOS = (window.navigator.standalone == true); isInWebAppChrome = (window.matchMedia('(display-mode: standalone)').matches);