translation-terrace/app/_layout.tsx
2025-02-13 06:42:28 -08:00

20 lines
328 B
TypeScript

import { Stack } from 'expo-router';
export default function Layout() {
return (
<Stack
screenOptions={{
headerStyle: {
backgroundColor: '#f4511e',
},
headerTintColor: '#fff',
headerTitleStyle: {
fontWeight: 'bold',
},
}}
>
</Stack>
);
}