-
Notifications
You must be signed in to change notification settings - Fork 0
PWA: Features
Charles Dell'Orto edited this page Mar 22, 2021
·
4 revisions
- Geolocation
navigator.geolocation.getCurrentPosition((position) => { ... })- Contact Picking
const props = ['name', 'email', 'tel', 'address', 'icon'];
const opts = { multiple: true };
const supported = 'contacts' in navigator && 'ContactsManager' in window;
if (supported) {
const contacts = await navigator.contacts.select(props, opts);
console.table(contacts);
}- Custom Installation
- App Shortcuts
- Idle Detection