react native link number doesn't work after #

120 views Asked by At

I'm actually trying to link a code like #873766 directly into the phone's calling application. But only the # appears... Did you guys have a solution for this?

1

There are 1 answers

0
Béranger On BEST ANSWER

You simply have to encode the USSD code like this :

    const ussdCodeEncoded = `tel:${encodeURIComponent(ussdCode)}`
    Linking.openURL("" + ussdCodeEncoded + "")