There seems to be an issue with the React Native WebView component on Android where links are not opening, while on iOS it works perfectly without any hitches. When trying to open links on Android, nothing happens upon clicking and no errors are shown. However, using the React Native Hyperlink component works fine. Can anyone suggest a solution to this problem?
const IS_IOS = Platform.OS === 'ios';
// Script for handling link clicks and postMessage functionality
...
export class AutoHeightWebView extends React.Component<Props, State> {
// Methods and functions for handling WebView component
...
}