This repository has been archived by the owner on Apr 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
183 lines (175 loc) · 5.18 KB
/
App.js
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
import React, { useState } from "react";
import { StyleSheet, Button, View, Text, TouchableOpacity } from "react-native";
import { NavigationContainer } from "@react-navigation/native";
import { createStackNavigator } from "@react-navigation/stack";
import { useNavigation } from "@react-navigation/native";
import Dashboard from "./App/Screens/Dashboard";
import Detail from "./App/Screens/Detail";
import Home from "./App/Screens/Home";
import ReportScreen from "./App/Screens/ReportScreen";
import ProblemScreen from "./App/Screens/ProblemScreen";
import Icon from "react-native-vector-icons/Ionicons";
import { useFonts } from "expo-font";
const Stack = createStackNavigator();
function NavigationButtons() {
const navigation = useNavigation();
const [focusedButton, setFocusedButton] = useState("Home");
const handlePress = (screenName) => {
setFocusedButton(screenName);
navigation.navigate(screenName);
};
return (
<View
style={{
flexDirection: "row",
justifyContent: "space-around",
height: 75,
marginTop: 15,
}}
>
<TouchableOpacity onPress={() => handlePress("Home")} activeOpacity={0.7}>
<View style={{ alignItems: "center", justifyContent: "center" }}>
<Icon
name="home-outline"
size={30}
color={focusedButton === "Home" ? "#E26199" : "#000"}
/>
<Text
style={{
fontWeight: "bold",
color: focusedButton === "Home" ? "#E26199" : "#000",
textAlign: "center",
}}
>
Home
</Text>
</View>
</TouchableOpacity>
<TouchableOpacity
onPress={() => handlePress("ProblemScreen")}
activeOpacity={0.7}
>
<View style={{ alignItems: "center", justifyContent: "center" }}>
<Icon
name="alert-circle-outline"
size={30}
color={focusedButton === "ProblemScreen" ? "#E26199" : "#000"}
/>
<Text
style={{
fontWeight: "bold",
color: focusedButton === "ProblemScreen" ? "#E26199" : "#000",
textAlign: "center",
}}
>
Problem
</Text>
</View>
</TouchableOpacity>
<TouchableOpacity
onPress={() => handlePress("ReportScreen")}
activeOpacity={0.7}
>
<View style={{ alignItems: "center", justifyContent: "center" }}>
<Icon
name="document-text-outline"
size={30}
color={focusedButton === "ReportScreen" ? "#E26199" : "#000"}
/>
<Text
style={{
fontWeight: "bold",
color: focusedButton === "ReportScreen" ? "#E26199" : "#000",
textAlign: "center",
}}
>
Report
</Text>
</View>
</TouchableOpacity>
<TouchableOpacity
onPress={() => handlePress("Dashboard")}
activeOpacity={0.7}
>
<View style={{ alignItems: "center", justifyContent: "center" }}>
<Icon
name="analytics-outline"
size={30}
color={focusedButton === "Dashboard" ? "#E26199" : "#000"}
/>
<Text
style={{
fontWeight: "bold",
color: focusedButton === "Dashboard" ? "#E26199" : "#000",
textAlign: "center",
}}
>
Dashboard
</Text>
</View>
</TouchableOpacity>
</View>
);
}
export default function App() {
const [fontsLoaded] = useFonts({
chulaReg: require("./assets/fonts/CHULALONGKORNReg.otf"),
chulaBold: require("./assets/fonts/CHULALONGKORNBold.otf"),
});
return (
<View style={styles.container}>
<NavigationContainer>
<Stack.Navigator initialRouteName="Home">
<Stack.Screen
name="ReportScreen"
component={ReportScreen}
options={{
headerLeft: () => null,
headerShown: false,
gestureEnabled: false,
}}
/>
<Stack.Screen
name="Dashboard"
component={Dashboard}
options={{
headerLeft: () => null,
headerShown: false,
gestureEnabled: false,
}}
/>
<Stack.Screen
name="ProblemScreen"
component={ProblemScreen}
options={{
headerLeft: () => null,
headerShown: false,
gestureEnabled: false,
}}
/>
<Stack.Screen
name="Home"
component={Home}
options={{
headerLeft: () => null,
headerShown: false,
gestureEnabled: false,
}}
/>
<Stack.Screen
name="Detail"
component={Detail}
options={{ headerLeft: () => null, headerShown: false }}
/>
</Stack.Navigator>
<NavigationButtons />
</NavigationContainer>
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: "#fff",
},
});