作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我刚刚开始我的新项目。安装 react-navigation
并在我的 IOS 应用程序中使用它后,出现错误 Invariant Violation: requireNativeComponent: "RNSScreenStackHeaderConfig"was not found in the UIManager.
。我无法找出问题所在。
这是我的导航代码
import React from 'react';
import {createNativeStackNavigator} from '@react-navigation/native-stack';
import strings from '../Constants/Strings';
import {Home} from '../Screens';
const Stack = createNativeStackNavigator();
export default MainStack = () => {
return (
<Stack.Navigator>
<Stack.Screen name={strings.navHome} component={Home} />
</Stack.Navigator>
);
};
import React from 'react';
import {NavigationContainer} from '@react-navigation/native';
import MainStack from './MainStack';
const Routes = () => {
return (
<NavigationContainer>
<MainStack />
</NavigationContainer>
);
};
export default Routes;
谁能告诉我问题是什么?我以前从来没有遇到过这样的错误
最佳答案
如果你正在使用@react-navigation/native-stack,你也应该安装 react-native-screens 和 react-native-safe-area-context。我相信你的错误是因为你没有安装 react-native-screens
关于reactjs - react 导航我 requireNativeComponent : "RNSScreenStackHeaderConfig",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69193890/
我刚刚开始我的新项目。安装 react-navigation 并在我的 IOS 应用程序中使用它后,出现错误 Invariant Violation: requireNativeComponent:
在android上运行应用程序时出现此错误。它构建正确,但异常崩溃。我已经安装了 React-native-screens、@React-native/navigation 和 https://rea
我是一名优秀的程序员,十分优秀!