Invariant Violation: The navigation prop is missing for this navigator

后端 未结 10 2590
佛祖请我去吃肉
佛祖请我去吃肉 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:10

    @Tom Dickson something like this:

    import React, { Component } from 'react';
    import { createStackNavigator, createAppContainer } from 'react-navigation';
    
    import ScreenOne from './ScreenOne';
    import ScreenTwo from './ScreenTwo';
    
    const NavStack = createStackNavigator({
        ScreenOne: { 
            screen: ScreenOne,
        },
        ScreenTwo: { 
            screen: ScreenTwo,
        },
    });
    
    const App = createAppContainer(NavStack);
    
    export default App;
    

    Then reference it with

    
    

提交回复
热议问题