blob: 8c51d5a34c7787e1ad62821e978378cd81008546 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
import { Stack } from "expo-router/stack";
export default function Layout() {
return (
<Stack
screenOptions={{
headerLargeTitle: true,
headerTransparent: true,
headerBlurEffect: "systemMaterial",
headerShadowVisible: false,
headerLargeTitleShadowVisible: false,
headerLargeStyle: { backgroundColor: "transparent" },
}}
>
<Stack.Screen name="index" options={{ title: "Settings" }} />
</Stack>
);
}
|