React-Navigation with Login Screen

后端 未结 10 2774
野性不改
野性不改 2020-11-28 19:30

I am trying to use react-navigation to create a initial LOGIN screen which has no tabbar and header, and once the user has been successfully authenticated will navigate to a

10条回答
  •  我在风中等你
    2020-11-28 20:02

    If you want no back button from your LIST page to LOGIN page, you can do this:

        static navigationOptions = {
            title: 'YOUR TITLE',
            headerLeft : null,
        };
    

提交回复
热议问题