You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_layout.jsx 257B

12345678910
  1. import { Stack } from 'expo-router';
  2. export default function HomeLayout() {
  3. return (
  4. <Stack>
  5. <Stack.Screen name="index" options={{headerShown:false}} />
  6. <Stack.Screen name="status" options={{headerShown:false}} />
  7. </Stack>
  8. );
  9. }