Invariant Violation: The navigation prop is missing for this navigator

后端 未结 10 2603
佛祖请我去吃肉
佛祖请我去吃肉 2020-11-30 23:20

I am receiving this message when I tried starting my react native app. Usually this kind of format works on other multi screen navigation yet somehow does not work in this c

10条回答
  •  青春惊慌失措
    2020-11-30 23:56

    Here's another way

    import React, {Component} from 'react';
    import { StyleSheet, Text, View } from 'react-native';
    import { createStackNavigator,createAppContainer } 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'
      }
    
    );
    
    class App extends React.Component {
      render() {
        return ;
      }
    }
    
    export default createAppContainer(RootStack);
    

提交回复
热议问题