79777872

Date: 2025-09-29 08:16:12
Score: 1
Natty:
Report link

I think you can use headerShown: false option from the Stack. For example:

import { Stack } from 'expo-router';

export default function Layout() {
  return (
    <Stack>
      <Stack.Screen name="(tabs)" options={{ headerShown: false }} />
    </Stack>
  );
}

You should check out this documentation.
https://docs.expo.dev/router/advanced/stack/#screen-options-and-header-configuration

Hiding tabs:
https://docs.expo.dev/router/advanced/tabs/#hiding-a-tab

Reasons:
  • Blacklisted phrase (1): this document
  • Whitelisted phrase (-1.5): you can use
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Costa