I am new to PWA and I am stuck on one task.
Here is my manifest.json
file which helps to display add to home screen popup to android device.
{
"short_name": "The Cozy",
"name": "The Cozy",
"icons": [
{
"src": "/img/app-icon-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/img/app-icon-512x512.png",
"sizes": "512x512",
"type": "image/png"
},
{
"src": "/img/app-icon-64x64.png",
"sizes": "64x64",
"type": "image/png"
}
],
"start_url": "/login",
"display": "standalone",
"theme_color": "#ffc107",
"background_color": "#ffffff"
}
But the problem is It doesn't show in the IOS device. Is there any way to show it on IOS
device using register worker?
Any would be highly appreciated. Thank you.
Edit: 1
Can we even open the share tab
This^^^^