react-native-recaptcha
react-native-recaptcha copied to clipboard
Webview has been removed from react-native
I've upgraded to the latest version of react-native 0.60.15 and I got this exception:
The react-native has removed the WebView from their core in the new version 0.60.X. So try to install react-native-webview and find the "MessageWebView.js" file in your node_modules/react-native-recaptcha folder, change the line 2 from
import { WebView, View } from 'react-native'
to
import { View } from 'react-native'.
And import WebView as:
import { WebView } from 'react-native-webview';
to use the original WebView functionality. I hope it helps.
Is there a patch for this with a solution or removal of Webview via react-native?
The react-native has removed the WebView from their core in the new version 0.60.X. So try to install react-native-webview and find the "MessageWebView.js" file in your node_modules/react-native-recaptcha folder, change the line 2 from
import { WebView, View } from 'react-native'
to
import { View } from 'react-native'.
And import WebView as:
import { WebView } from 'react-native-webview';
to use the original WebView functionality. I hope it helps.
Now, the app shows "View config not found for name RNCWebView" error
The react-native has removed the WebView from their core in the new version 0.60.X. So try to install react-native-webview and find the "MessageWebView.js" file in your node_modules/react-native-recaptcha folder, change the line 2 from
import { WebView, View } from 'react-native'
to
import { View } from 'react-native'.
And import WebView as:
import { WebView } from 'react-native-webview';
to use the original WebView functionality. I hope it helps.
Now, the app shows "View config not found for name RNCWebView" error
It sounds like you didn't link the react-native-webview successfully. Please try this tutorial to link it before use it. Hope it helps.
@marcosvaz can you create a patch or let us know the steps you followed for installing WebView?
Use this library
https://www.npmjs.com/package/react-native-secure-captcha-v3