Error : WebView has been removed from react native

Error : WebView has been removed from react native

我昨天使用 react-native-cli 构建了新的 React Native 项目。但是当 运行 我的 android phone 的项目时,我在红屏中得到了这个错误。

Invariant Violation: WebView has been removed from React Native. It can now be installed and imported from 'react-native-webview' instead of 'react-native'. See 'https://github.com/react-native-community/react-native-webview'.

对于您的方案,旧 WebView 现在已弃用,以提高性能并减小包大小。您可以通过 here

找到更多相关信息

解决方案

使用此命令安装新的 WebView 包

npm install --save react-native-webview 

您可以从 here

找到有关软件包安装的更多信息

安装上述包后,现在删除旧的导入并像这样重新导入 WebView

import { WebView, } from 'react-native'; //Remove this from your imports

import { WebView } from 'react-native-webview'; //Add this to your imports