Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

_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. }