選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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