Skip to content

Instantly share code, notes, and snippets.

@duytq94
Last active March 24, 2020 10:15
Show Gist options
  • Save duytq94/e70e5a7a2a4fdd404f077d6f7508e1ec to your computer and use it in GitHub Desktop.
Save duytq94/e70e5a7a2a4fdd404f077d6f7508e1ec to your computer and use it in GitHub Desktop.
// Send a message to native code
TestConnectNative.sendMessage(this.state.messageToNative);
// Send a callback to native code and receive a message from it
TestConnectNative.sendCallback((nativeMessage) => {
console.log(`This log is from js code callback with native message: "${nativeMessage}"`);
});
// Exit RN to go back to native
TestConnectNative.exitRN(rootTag);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment