primeiro commit
This commit is contained in:
14
app/(tabs)/_layout.tsx
Normal file
14
app/(tabs)/_layout.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import { Tabs } from 'expo-router';
|
||||
|
||||
export default function TabLayout() {
|
||||
return (
|
||||
<Tabs
|
||||
initialRouteName="inicio" // Define qual o nome do ficheiro que abre primeiro
|
||||
screenOptions={{ headerShown: false }}
|
||||
>
|
||||
<Tabs.Screen name="index" options={{ title: 'Login' }} />
|
||||
<Tabs.Screen name="inicio" options={{ title: 'Início' }} />
|
||||
<Tabs.Screen name="registo" options={{ title: 'Registo' }} />
|
||||
</Tabs>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user