Skip to content

Commit 0a9f3ad

Browse files
authored
Merge pull request #5 from hiteshjoshi1/dashboard
Dashboard
2 parents 7ad192c + a6fd915 commit 0a9f3ad

23 files changed

+2307
-1719
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ cd android
2121
./gradlew assembleRelease
2222

2323
APK file will be in
24-
android/app/build/outputs/apk/debug/app-debug.apk
24+
android/app/build/outputs/apk/release/app-release.apk
2525

2626
Pair mac with Android and then use
2727
Bluetooth File Exchange

app/(modals)/_layout.tsx

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
// app/(modals)/_layout.tsx
2+
import React from 'react';
3+
import { Stack } from 'expo-router';
4+
import AuthProtectedRoute from '../../components/AuthProtectedRoute';
5+
6+
export default function ModalsLayout() {
7+
return (
8+
<AuthProtectedRoute>
9+
<Stack
10+
screenOptions={{
11+
headerStyle: {
12+
backgroundColor: '#3498db',
13+
},
14+
headerTintColor: '#fff',
15+
headerTitleStyle: {
16+
fontWeight: 'bold',
17+
},
18+
}}
19+
>
20+
<Stack.Screen
21+
name="goals"
22+
options={{
23+
title: 'Goals',
24+
presentation: 'modal',
25+
}}
26+
/>
27+
<Stack.Screen
28+
name="good-deeds"
29+
options={{
30+
title: 'Good Deeds',
31+
presentation: 'modal',
32+
}}
33+
/>
34+
<Stack.Screen
35+
name="reflections"
36+
options={{
37+
title: 'Reflections',
38+
presentation: 'modal',
39+
}}
40+
/>
41+
</Stack>
42+
</AuthProtectedRoute>
43+
);
44+
}

0 commit comments

Comments
 (0)