How to launch waze?

I am using Reeact V5 and I want to launch Waze app but it doesnt working.

This is what I tried to do:

              <Link
                href={`waze://?ll=${position[1]},${position[0]}`}
                external>
                Waze
              </Link>

Also tried to install cordova in app browser plugin:

https://cordova.apache.org/docs/en/10.x/reference/cordova-plugin-inappbrowser/

And then I made this method to run after click:

cordova.InAppBrowser.open(‘waze://?ll=${position[1]},${position[0]}’, ‘_system’)

But this is working only on Adroid and not on iOS.