最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to hide react navigation header on one screen - Stack Overflow

programmeradmin1浏览0评论

I need to hide the navbar on the landing page of an app I tried this:

const Stack = createStackNavigator(
  {
    Landing: {screen: LandingScreen},
  },
  {
    headerMode: 'none',
    navigationOptions: {
      headerVisible: false,
    },
  },
);

But i get an error saying:

"Creating a navigator does'nt take an argument..."

When I use headerMode="none" it hides the navbar on all screens

 <NavigationContainer>
      <Stack.Navigator
        headerMode="none" // this hides on all screens
        screenOptions={{
          headerStyle: {
            backgroundColor: '#3c74db',
          },
          headerTintColor: '#fff',
          headerTitleStyle: {
            fontWeight: 'bold',
          },
        }}>
        <Stack.Screen
          name="Landing"
          ponent={LandingScreen}
          options={{headerShown: 'none'}} // This does not work
        />
        <Stack.Screen name="Sales" ponent={SalesScreen} />
        <Stack.Screen name="Sign In" ponent={SignInScreen} />
        <Stack.Screen name="Register" ponent={RegisterScreen} />
        <Stack.Screen name="Create Item" ponent={CreateItemScreen} />
        <Stack.Screen name="Payment" ponent={PaymentScreen} />
      </Stack.Navigator>
    </NavigationContainer>

So how can I hide on only one screen?

I need to hide the navbar on the landing page of an app I tried this:

const Stack = createStackNavigator(
  {
    Landing: {screen: LandingScreen},
  },
  {
    headerMode: 'none',
    navigationOptions: {
      headerVisible: false,
    },
  },
);

But i get an error saying:

"Creating a navigator does'nt take an argument..."

When I use headerMode="none" it hides the navbar on all screens

 <NavigationContainer>
      <Stack.Navigator
        headerMode="none" // this hides on all screens
        screenOptions={{
          headerStyle: {
            backgroundColor: '#3c74db',
          },
          headerTintColor: '#fff',
          headerTitleStyle: {
            fontWeight: 'bold',
          },
        }}>
        <Stack.Screen
          name="Landing"
          ponent={LandingScreen}
          options={{headerShown: 'none'}} // This does not work
        />
        <Stack.Screen name="Sales" ponent={SalesScreen} />
        <Stack.Screen name="Sign In" ponent={SignInScreen} />
        <Stack.Screen name="Register" ponent={RegisterScreen} />
        <Stack.Screen name="Create Item" ponent={CreateItemScreen} />
        <Stack.Screen name="Payment" ponent={PaymentScreen} />
      </Stack.Navigator>
    </NavigationContainer>

So how can I hide on only one screen?

Share Improve this question edited Feb 27, 2020 at 7:45 Harry asked Feb 27, 2020 at 7:31 HarryHarry 1,1014 gold badges21 silver badges43 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 15

React Navigation v5.x

The options prop can be used to configure individual screens inside the navigator. You can use headershown option:

Whether to show or hide the header for the screen. The header is shown by default unless headerMode was set to none. Setting this to false hides the header. When hiding the header on specific screens, you might also want to set headerMode prop to screen. Docs.

<Stack.Navigator ...>
 ...
  <Stack.Screen
    name="Landing"
    ponent={LandingScreen}
    options={{
      headerShown: false, // change this to `false`
    }}
  />
...
</Stack.Navigator>
发布评论

评论列表(0)

  1. 暂无评论