Skip to content Skip to sidebar Skip to footer

Cannot Linking. Openurl Whatsup Message In React Native

I need to open whatsup with a preloaded message, like this: Linking.openURL('whatsapp://send?text==%C2%A1Hola!%20Quiero%20realizar%20una%20consulta.&phone=5493416931539').catch

Solution 1:

You need to use the below code

import { Linking } from ‘react-native’;
shareToWhatsAppWithContact = (text, phoneNumber) => {
 Linking.openURL(`whatsapp://send?text=${text}&phone=${phoneNumber}`);
}

Post a Comment for "Cannot Linking. Openurl Whatsup Message In React Native"