18 lines
315 B
TypeScript
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',
|
|
},
|
|
}}
|
|
/>
|
|
);
|
|
}
|