javascript - 不变违规 : ViewPropTypes has been removed from React Native

标签 javascript reactjs react-native expo

请任何人帮助我如何修复此错误“错误不变违规:ViewPropTypes 已从 React Native 中删除。迁移到从“已弃用的react-native-prop-types”导出的 ViewPropTypes。” 我已经尝试了很多方法,例如删除节点模块 npm install deprecated-react-native-prop-types 但对我来说没有任何作用,我现在该如何修复 enter image description here

package.json

{
  "main": "node_modules/expo/AppEntry.js",
  "scripts": {
    "start": "expo start",
    "android": "expo start --android",
    "ios": "expo start --ios",
    "web": "expo start --web",
    "eject": "expo eject"
  },
  "dependencies": {
    "@react-native-community/masked-view": "0.1.10",
    "@react-navigation/bottom-tabs": "^5.11.10",
    "@react-navigation/compat": "^5.3.20",
    "@react-navigation/native": "^5.9.4",
    "@react-navigation/stack": "^5.14.4",
    "deprecated-react-native-prop-types": "^2.3.0",
    "expo": "^46.0.0",
    "expo-av": "~12.0.4",
    "expo-linear-gradient": "~11.4.0",
    "expo-status-bar": "~1.4.0",
    "haversine": "^1.1.1",
    "invariant": "^2.2.4",
    "react": "18.0.0",
    "react-dom": "18.0.0",
    "react-native": "0.69.5",
    "react-native-animatable": "^1.3.3",
    "react-native-flexi-radio-button": "^0.2.2",
    "react-native-fontawesome": "^7.0.0",
    "react-native-gesture-handler": "~2.5.0",
    "react-native-modal": "^13.0.0",
    "react-native-modalize": "^2.0.8",
    "react-native-progress-circle": "^2.1.0",
    "react-native-reanimated": "~2.9.1",
    "react-native-safe-area-context": "4.3.1",
    "react-native-screens": "~3.15.0",
    "react-native-snap-carousel": "^3.9.1",
    "react-native-swiper": "^1.6.0",
    "react-native-web": "~0.18.7",
    "react-navigation": "^4.4.4",
    "rn-sliding-up-panel": "^2.4.5"
  },
  "devDependencies": {
    "@babel/core": "^7.18.6"
  },
  "private": true
}

babel.config.js

module.exports = { presets: ['module:metro-react-native-babel-preset'], plugins: ['react-native-reanimated/plugin'], };

最佳答案

您需要检查 node_modules 文件夹中所有下载的依赖项,其中包含以下导入语句。

import { ViewPropTypes } from 'react-native';

手动更改它从 deprecated-react-native-prop-types 的导入。

import { ViewPropTypes } from 'deprecated-react-native-prop-types';

关于javascript - 不变违规 : ViewPropTypes has been removed from React Native,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/73810651/

相关文章:

javascript - Firebase 用户 displayName 为空

javascript - 如何在实时服务器上上传 nodejs 项目或安装 nodejs 和 npm 模块

javascript - React navigation 5从堆栈导航器中隐藏标签栏

react-native - 当 StoreReview.requestReview() 时,expo-store-review 不起作用

javascript - 如何在文本输入中设置图标?

javascript - 错误: this language feature is only supported for ECMASCRIPT6 mode or better 【Google Tag Manager】

javascript - 通过char javascript遍历字符串char

css - 在 React 的 Material-ui 上覆盖 TableRow 悬停 CSS

reactjs - react-bootstrap 没有按预期工作

ios - React Native 应用程序在 Release模式下崩溃但在 Debug模式下运行良好