Skip to content

Instantly share code, notes, and snippets.

@ayberkanilatsiz
Created September 13, 2017 10:15
Show Gist options
  • Save ayberkanilatsiz/4e4495e6cdb82ae0e66b4ddd226125cc to your computer and use it in GitHub Desktop.
Save ayberkanilatsiz/4e4495e6cdb82ae0e66b4ddd226125cc to your computer and use it in GitHub Desktop.
React Native WhatsApp Text Share
//import Linking
shareWhatsApp(text){
text = encodeURIComponent(text);
Linking.openURL('whatsapp://send?text='+text).then((resp)=>{
console.log('resp',resp)
}).catch((e)=>{
console.log('e',e)
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment