Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

react native webview postmessage example

if(navigator.appVersion.includes('Android')){
            document.addEventListener("message", function (data) {
               alert("you are in android OS");
            });
        }
else {
            window.addEventListener("message", function (data) {
               alert("you are in android OS");               
             });
        }
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #react #native #webview #postmessage
ADD COMMENT
Topic
Name
8+7 =