14 lines
425 B
TypeScript
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>
|
|
);
|
|
} |