-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path_layout.tsx
More file actions
60 lines (59 loc) · 1.2 KB
/
Copy path_layout.tsx
File metadata and controls
60 lines (59 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import { Stack } from "expo-router"
export default function RootLayout() {
return (
<Stack
screenOptions={{
headerShown: true,
}}>
<Stack.Screen
name="index"
options={{
title: "Widgets",
headerShown: false,
}}
/>
<Stack.Screen
name="connect"
options={{
title: "Connect Widget",
headerBackTitle: "Back",
}}
/>
<Stack.Screen
name="budgets"
options={{
title: "Budgets Widget",
headerBackTitle: "Back",
}}
/>
<Stack.Screen
name="goals"
options={{
title: "Goals Widget",
headerBackTitle: "Back",
}}
/>
<Stack.Screen
name="pulse"
options={{
title: "Pulse Widget",
headerBackTitle: "Back",
}}
/>
<Stack.Screen
name="spending"
options={{
title: "Spending Widget",
headerBackTitle: "Back",
}}
/>
<Stack.Screen
name="transactions"
options={{
title: "Transactions Widget",
headerBackTitle: "Back",
}}
/>
</Stack>
)
}