translation-terrace/app/_layout.tsx
2025-02-01 08:58:03 -08:00

18 lines
315 B
TypeScript

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