gpt4 book ai didi

android - 错误 : WebView has been removed from react native

转载 作者:行者123 更新时间:2023-12-04 23:56:32 26 4
gpt4 key购买 nike

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

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'.

scri

最佳答案

对于您的场景,旧的 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

关于android - 错误 : WebView has been removed from react native,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60472297/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com