Ionic 4/5 - Prevent double tap zoom in IOS

I have a PWA app in Ionic 5 (but I assume the same issue will apply to 4 as well). In short I have a couple of ion fab buttons. In ios if these buttons are double tap, the web browser annoyingly zooms in. Is there a way to prevent this behaviour?
I don’t need double tap so even if this prevent it would suffice for my application.

Thanks in advance.

Check the meta viewport tag in your index.html. It should be set to

    <meta
      name="viewport"
      content="viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"
    />

Thanks that’s what I have in my index but ios seems to ignore it.

<meta name="viewport" content="viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">

Can you make a sample app and push it to github?

Same issue here with the suggested meta viewport tags set as mentioned.

Web browser annoyingly zooms in as mentioned by @karvanj but if the app is installed as a PWA the zoom in is surpressed.

"@ionic/react": "^5.1.1"

I’ve the same issue. Any Solution?

Thank’s

Regarts

Same issue. Any solutions?

Same Issue, any solution?