progressive-web-apps

Is there a way for PWAs to access the phone number of the host device?

允我心安 提交于 2020-08-24 06:53:51
问题 I plan on developing a Progressive Web App for Android devices - one major concern is if the PWA can access the host phone number . Our business is providing cheap mobile phones to our business partners and if our PWA can access the phone numbers of the devices, we can do easier 2-factor authentication. I figure the way a PWA can access the host phone number - is when the user launches the app from their mobile phone's Home Screen. Is this possible somehow? This great answer from Dan doesn't

Is there a way for PWAs to access the phone number of the host device?

徘徊边缘 提交于 2020-08-24 06:53:27
问题 I plan on developing a Progressive Web App for Android devices - one major concern is if the PWA can access the host phone number . Our business is providing cheap mobile phones to our business partners and if our PWA can access the phone numbers of the devices, we can do easier 2-factor authentication. I figure the way a PWA can access the host phone number - is when the user launches the app from their mobile phone's Home Screen. Is this possible somehow? This great answer from Dan doesn't

Lock orientation (Portrait) on VueJS PWA for all browsers

时光怂恿深爱的人放手 提交于 2020-08-24 04:57:58
问题 I am trying to get a screen lock to work for my web application. I have been searching the forums but cant find a solution to this problem. Does anybody know how I can tackle this problem? Problem solved with a css fix. 回答1: I used the scss media queries to solve this problem. @media screen and (min-aspect-ratio: 13/9) { html { transform: rotate(-90deg); transform-origin: left top; width: 100vh; overflow-x: hidden; position: absolute; top: 100%; left: 0; } .bw-dashboard { height: inherit; } }

Lock orientation (Portrait) on VueJS PWA for all browsers

此生再无相见时 提交于 2020-08-24 04:56:10
问题 I am trying to get a screen lock to work for my web application. I have been searching the forums but cant find a solution to this problem. Does anybody know how I can tackle this problem? Problem solved with a css fix. 回答1: I used the scss media queries to solve this problem. @media screen and (min-aspect-ratio: 13/9) { html { transform: rotate(-90deg); transform-origin: left top; width: 100vh; overflow-x: hidden; position: absolute; top: 100%; left: 0; } .bw-dashboard { height: inherit; } }

Hide address bar in Progressive Web Applications

让人想犯罪 __ 提交于 2020-08-21 05:16:32
问题 I'm developing a PWA with VueJS. I started testing my application in real devices (Add to home screen). My application is intended to be 100% height, as it displays a map as you can see: It seems that sometimes, transitions that appear from outside the viewport height, makes the address bar appear at the top of the page. For a PWA, I think this behaviour makes the app feel less native, and also, breaks my design (The button at bottom center and the whole map container are not visible unless

Hide address bar in Progressive Web Applications

左心房为你撑大大i 提交于 2020-08-21 05:16:01
问题 I'm developing a PWA with VueJS. I started testing my application in real devices (Add to home screen). My application is intended to be 100% height, as it displays a map as you can see: It seems that sometimes, transitions that appear from outside the viewport height, makes the address bar appear at the top of the page. For a PWA, I think this behaviour makes the app feel less native, and also, breaks my design (The button at bottom center and the whole map container are not visible unless

Progressive web app beacon search

試著忘記壹切 提交于 2020-08-08 13:52:29
问题 Is it possible to search for beacon data (uuid, url, ...) with a progressive web application using just web technologies that is without using native mobile technologies (Android, ios, ...)? Thanks in advance. 回答1: Unfortunately, this is not possible as of July 2020. While Google has been working on the WebBluetooth project to bring support for many bluetooth operations to the browser, at least in Google Chrome implementations on Android 6+, Mac or ChromeOS. Scanning for beacons is not yet