Search code examples
react-nativereact-native-webview

prevent react-native-webview from opening external apps on its own


I am using react-native-webview for my project. However, when I open the website of the e-commerce site, it opens the application of that site by itself. How can I block it?

I want my application not to open another application.


Solution

  • react-native-webview already provided the solution.

    you can try this way.

    <WebView
       originWhitelist={['*']}
       setSupportMultipleWindows={false}
    />