0

React Native: I would like to create a link that prepares to send a message via whatsapp.

I am doing it as follows :

Linking.openURL(`whatsapp://send?text=${message}&phone=+55${masked}`);

My question is how to adapt this code and open WhatsAppBussines?

Kirill Novikov
  • 2,576
  • 4
  • 20
  • 33

1 Answers1

2

something like this

<Text style={{color: 'blue'}}
onPress={() => Linking.openURL('whatsapp://send?text=${message}&phone=+55${masked}')}>
  Whatsapp
</Text>

and when you click, WhatsApp auto open, you can choose whatsapp/whatsappbusiness

Kirill Novikov
  • 2,576
  • 4
  • 20
  • 33
Dicka Reynaldi
  • 329
  • 2
  • 11