Files
2026-05-29 13:27:53 +02:00

23 lines
471 B
TypeScript

import { Stack } from 'expo-router';
import * as React from 'react';
import theme from '../theme';
export default function RootLayout() {
return (
<Stack
screenOptions={{
headerStyle: {
backgroundColor: theme.colors.primary,
},
headerTintColor: '#fff',
headerTitleStyle: {
fontWeight: 'bold',
},
}}
>
<Stack.Screen name="index" options={{ headerTitle: '' }} />
</Stack>
);
}