简体   繁体   中英

Remove back button from header in React Native and React Navigation

Tried these two ways, but none worked:

options={{
  headerLeft: () => {
     return null}
}}

// method 2
screenOptions={{
   headerLeft: null,
}}

You could do it for all screens or for one of them like so:

<Stack.Navigator
  // For all screens inside this Stack Navigator
  screenOptions={{
    headerBackVisible: false,
  }}
>
  <Stack.Screen
    // For the login screen inside this Stack Navigator
    options={{ headerBackVisible: false }}
    component={LoginScreen}
    name="Login"
  />
</Stack.Navigator>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM