React native — call phone number with extension

后端 未结 2 1726
孤街浪徒
孤街浪徒 2021-02-04 06:19

I am trying to open phone number with extension. Linking works with just phone number

Tried with few options

Linking.openURL(\'tel:XXXXXXXXX,XXX\');

Lin         


        
2条回答
  •  孤独总比滥情好
    2021-02-04 06:39

    I know it is late, but you can try this component: react-native-communications.

    It works well both on iOS and Android.

    You have to import it in the file you need:

    import Communications from 'react-native-communications';
    

    and then use it as you need:

     Communications.phonecall(phoneNumbers[0].number, true)}>
    

提交回复
热议问题