Reputation: 778
I have a code that open new tab in the browser
window.open
But when I view the website inside React native webview, it didn't open a window. How can I do this inside webview?
Thanks
Upvotes: 0
Views: 2080
Reputation: 851
webview doesnot provide window option, as it is not a browser, so you have make change in your code for react-native by applying checks of platform or other.
Upvotes: 1