Invariant Violation: The navigation prop is missing for this navigator

后端 未结 10 2591
佛祖请我去吃肉
佛祖请我去吃肉 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-12-01 00:11

    import React, { Component } from 'react';
    import { createStackNavigator, createAppContainer } from 'react-navigation';
    import Home from './home';
    import Details from './details';
    
    const Root = createStackNavigator({
    
        home: { 
    
            screen: Home,
        },
    
        details: { 
    
            screen: Details,
        },
    
    });
    
    const container = createAppContainer(Root);
    export default container;   

    in your App.js file reference it with

提交回复
热议问题