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.
react-native-webview already provided the solution.
you can try this way.
<WebView
originWhitelist={['*']}
setSupportMultipleWindows={false}
/>