我尝试启动我的本机应用程序时收到此消息。通常,这种格式可在其他多屏幕导航上使用,但在这种情况下不起作用。
这是错误:
Invariant Violation: The navigation prop is missing for this navigator. In
react-navigation 3 you must set up your app container directly. More info:
https://reactnavigation.org/docs/en/app-containers.html
这是我的应用格式:
import React, {Component} from 'react';
import { StyleSheet, Text, View } from 'react-native';
import { createStackNavigator } from 'react-navigation';
import Login from './view/login.js'
import SignUp from './view/signup.js'
const RootStack = createStackNavigator(
{
Home: {
screen: Login
},
Signup: {
screen: SignUp
}
},
{
initialRouteName: 'Home'
}
);
export default class App extends React.Component {
render() {
return <RootStack />;
}
}
我在底部有代码
我简单地将其替换为它,并且就像一个魅力一样工作。肯定是因为react-navigation库中的更新:
另外,我还在顶部的react-navigation中包括了createAppContainer库。