Skip to content

Instantly share code, notes, and snippets.

@gs-akhan
Last active April 9, 2017 21:53
Show Gist options
  • Save gs-akhan/05b398bd991a59d3b22a8a74cfb55170 to your computer and use it in GitHub Desktop.
Save gs-akhan/05b398bd991a59d3b22a8a74cfb55170 to your computer and use it in GitHub Desktop.
Sending Data to WebView in React Native, Ex :
//This sends data from RN to webview
this.webview.postMessage("Hello from RN");
//to get this data into webview
...
<script>
document.addEventListener("message", function(data) {
alert(data.data);
});
</script>
....
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment