Hi i am using react native\'s webview to display some html,
i want that whenever a user clicks a link inside that html, it will open the user\'s browser with that link.
In addition to the excellent answer https://stackoverflow.com/a/40382325/10236907:
When using source={{html: '...'}}, you can check for an external url change using:
if (!/^data:text/.test(event.url)) {