Files
Fluxup_PAP/app/_layout.tsx
2026-03-10 16:18:05 +00:00

14 lines
425 B
TypeScript

import { Stack } from 'expo-router';
export default function Layout() {
return (
<Stack screenOptions={{ headerShown: false }}>
{/* O 'index' refere-se ao ficheiro app/index.tsx (o teu Login) */}
<Stack.Screen name="index" options={{ title: 'Login' }} />
<Stack.Screen name="registo" />
<Stack.Screen name="esqueciPalavraPasse" />
<Stack.Screen name="inicio" />
</Stack>
);
}