警告 ViewPropTypes 将从 React Native 中移除。迁移到从 'deprecated-react-native-prop-types' 导出的 ViewPropTypes

WARN ViewPropTypes will be removed from React Native. Migrate to ViewPropTypes exported from 'deprecated-react-native-prop-types'

世博会版本:45 使用 Stack Navigation 和 Native Base。 我正在使用道具,但收到此警告。 为什么我会收到此警告?

Native Base 尚未更新其源代码以包含向 deprecated-react-native-prop-types 的迁移。您可以在此处阅读更多相关信息 https://github.com/facebook/react-native/issues/33557

您可以在应用的开头添加以下代码段(可能 App.js)以暂时抑制警告。

import {LogBox} from "react-native";

LogBox.ignoreLogs([
"ViewPropTypes will be removed",
"ColorPropType will be removed",
])