-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.tsx
155 lines (146 loc) · 4.55 KB
/
App.tsx
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
import { useEffect, useState } from "react";
import { StyleSheet, Text, TouchableOpacity, View } from "react-native";
import { NavigationContainer } from "@react-navigation/native";
import { createNativeStackNavigator } from "@react-navigation/native-stack";
import FlashMessage from "react-native-flash-message";
import { LogBox } from "react-native";
import * as Sentry from "sentry-expo";
import AsyncStorage from "@react-native-async-storage/async-storage";
import Constants from "expo-constants";
import WelcomeScreen from "./screens/WelcomeScreen";
import PracticeScreen from "./screens/PracticeScreen";
import ScoreScreen from "./screens/ScoreScreen";
import TestScreen from "./screens/TestScreen";
import DataScreen from "./screens/DataScreen";
import Onboarding from "./screens/Onboarding";
import colors from "./utils/theme";
import DSN from "./services/sentryInfo";
const Stack = createNativeStackNavigator();
export default function App() {
LogBox.ignoreAllLogs(); // not for final
LogBox.ignoreLogs([
"Modal with 'pageSheet' presentation style and 'transparent' value is not supported.",
]);
const [newUser, setNewUser] = useState(true);
Sentry.init({
dsn: DSN,
enableInExpoDevelopment: true,
debug: false,
});
const getData = async () => {
try {
const value = await AsyncStorage.getItem("newUser");
if (value !== null) {
setNewUser(value == "true");
}
} catch (e) {
console.error(e);
}
};
useEffect(() => {
getData();
}, []);
return (
<View style={{ flex: 1 }}>
<NavigationContainer>
<Stack.Navigator
defaultScreenOptions={{
headerStyle: { backgroundColor: colors.primary },
}}
>
{newUser ? (
<Stack.Screen
name="onboarding"
component={Onboarding}
initialParams={{
getAsyncData: () => getData(),
}}
options={{
title: "Introduction",
headerStyle: {
backgroundColor: colors.secondary,
},
headerTintColor: "#fff",
headerTitleStyle: {
fontWeight: "regular",
},
}}
/>
) : (
<>
<Stack.Screen
name="welcomeScreen"
component={WelcomeScreen}
options={{
headerShown: false,
headerStyle: { backgroundColor: colors.secondary },
}}
/>
<Stack.Screen
name="practiceScreen"
component={PracticeScreen}
options={{
title: "Practice",
headerStyle: {
backgroundColor: colors.secondary,
},
headerTintColor: "#fff",
headerTitleStyle: {
fontWeight: "regular",
},
}}
/>
<Stack.Screen
name="testScreen"
component={TestScreen}
options={{
title: "Assess",
headerStyle: {
backgroundColor: colors.secondary,
},
headerTintColor: "#fff",
headerTitleStyle: {
fontWeight: "regular",
},
}}
/>
<Stack.Screen
name="scoreScreen"
component={ScoreScreen}
options={{
title: "Scores",
headerStyle: {
backgroundColor: colors.secondary,
},
headerTintColor: "#fff",
headerTitleStyle: {
fontWeight: "regular",
},
}}
/>
<Stack.Screen
name="dataScreen"
component={DataScreen}
options={{
title: "More info",
headerStyle: {
backgroundColor: colors.secondary,
},
headerTintColor: "#fff",
headerTitleStyle: {
fontWeight: "regular",
},
}}
/>
</>
)}
</Stack.Navigator>
</NavigationContainer>
<FlashMessage
position="top"
statusBarHeight={Constants.statusBarHeight}
floating
/>
</View>
);
}