iamshaunjp / iamshaunjp/react-native-tutorial
Error: Invariant Violation: requireNativeComponent: "RNGestureHandlerRootView" was not found in the UIManager.
- 主要语言
- 没有语言数据
- 星标
- 605
- 派生
- 499
- PR 合并指标
- 30 天内没有已合并 PR
描述
While i followed the project in lesson 20, i got this error..
Invariant Violation: requireNativeComponent: "RNGestureHandlerRootView" was not found in the UIManager.
All of my file is the same, what did i do wrong?
My App.js file:
```
import { useState } from 'react';
import * as Font from 'expo-font';
import AppLoading from 'expo-app-loading';
import Navigator from './routes/homeStack';
const getFonts = () => Font.loadAsync({
'eduSABeginner-regular': require('./assets/fonts/EduSABeginner-Regular.ttf'),
'eduSABeginner-bold': require('./assets/fonts/EduSABeginner-Bold.ttf')
});
export default function App() {
const [fontsLoaded, setFontsLoaded] = useState(false);
if (fontsLoaded) {
return (
);
} else {
return (
setFontsLoaded(true)}
onError={() => console.log('error')} />
)
}
}
```
My homeStack.js file:
```
import { createStackNavigator } from "react-navigation-stack";
import {createAppContainer} from "react-navigation";
import HomePage from '../screens/HomePage';
import ReviewDetails from "../screens/ReviewDetails";
const screens = {
HomePage: {
screen: HomePage,
},
ReviewDetails: {
screen: ReviewDetails,
}
};
const HomeStack = createStackNavigator(screens);
export default createAppContainer(HomeStack);
```
贡献指南
这个仓库没有索引到贡献指南
调研方向
Start with App.js and routes/homeStack.js, then reproduce the lesson 20 flow that renders Navigator. Compare the project setup with the navigation entry point and verify that the app loads without the RNGestureHandlerRootView invariant.
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- javascript, react-native
- 领域
- mobile
- Issue 类型
- 缺陷
- 难度
- 3/5
- 预计耗时
- 1-2 天
- 活跃度
- 停滞
- 描述清晰度
- 需要澄清
- 新手友好度
- 25/100