Created
January 5, 2018 00:06
-
-
Save zaguiini/1ee0274b2c4ddc7f1985f1d3a04350e8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
window.onMessage = function(event) { | |
// now you'll follow with your callback | |
} | |
facebookLoginClicked() { | |
// how to post a message | |
switch(window.isNative) { | |
case 'android': | |
window.postMessage('facebookLogin') | |
break | |
case 'ios': | |
window.webkit.messageHandlers.reactNative.postMessage('facebookLogin') | |
break | |
default: | |
// not native | |
window.facebookLogin() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment