找不到模块“react-native-safe-area-context”

问题描述 投票:0回答:1

我正在学习 React Native。 我正在尝试使用 SafeAreaProvider 和 SafeAreaView,但是当我这样做时:

import { SafeAreaProvider, SafeAreaView } from "react-native-safe-area-context";

我收到消息找不到模块“react-native-safe-area-context”

这是我的版本:

"dependencies": {
    "@react-native-community/masked-view": "^0.1.11",
    "expo": "~48.0.18",
    "expo-status-bar": "~1.4.4",
    "react": "18.2.0",
    "react-native": "0.71.8",
    "react-native-safe-area-context": "4.5.0",
    "react-navigation": "^4.4.4"

你能帮我吗?非常感谢!

我尝试将

react-native-safe-area-context
4.5
 降级为 
4.7.1

reactjs react-native expo
1个回答
0
投票

您收到错误消息“无法找到模块‘react-native-safe-area-context’”,因为您的环境中未安装 SafeAreaContext 库。

该库包含在 Expo Go 中,但如果您使用 NPM,则应按照此处的说明进行操作。

在您的环境终端中运行此命令以在本地安装库:

- npx expo install react-native-safe-area-context
如果该命令不起作用,请尝试以下命令:

npx expo install react-native-screens react-native-safe-area-context
    
© www.soinside.com 2019 - 2024. All rights reserved.