Any events occurring inside webview are isolated from other applications. This is by design of this native component, not a limitation of React Native.
What you need to do is manually derive the event that interests you from the web view into your application.
Now you can do this using react-native-webview-bridge . You set a global listener for the DOM event that interests you. After you catch him, you send him to your application through the bridge.
source share