-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
262 lines (258 loc) · 7.33 KB
/
Copy pathApp.js
File metadata and controls
262 lines (258 loc) · 7.33 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
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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
import { LogBox, Image, View } from "react-native";
import React, { useContext } from "react";
import "react-native-gesture-handler";
import {
NavigationContainer,
DarkTheme,
DefaultTheme,
} from "@react-navigation/native";
import { createStackNavigator } from "@react-navigation/stack";
import { createBottomTabNavigator } from "@react-navigation/bottom-tabs";
import {
AntDesign,
Ionicons,
MaterialCommunityIcons,
MaterialIcons,
FontAwesome5,
} from "@expo/vector-icons";
import Home from "./Screens/Home";
import Leez from "./Screens/Leez";
import Search from "./Screens/Search";
import Wishlist from "./Screens/Wishlist";
import Profil from "./Screens/Profil";
import Store from "./Screens/Store";
import Product from "./Screens/Product";
import Compte from "./Screens/Compte";
import EditPass from "./Screens/EditPass";
import { ThemeProvider, ThemeContext } from "./Theme/ThemeManager";
const Stack = createStackNavigator();
const Tab = createBottomTabNavigator();
export default function App() {
// igonoring the timeout warning
LogBox.ignoreAllLogs();
LogBox.ignoreLogs(["Setting a timer for a long period of time"]);
// TO DO :
// Firstly you have to find the following file in your project: libraries/Core/Timers/JSTimer;js
// Open it and you just have to change this const MAX_TIMER_DURATION_MS, to increase above your duration, in your case, above 85000
function HomeStack() {
return (
<Stack.Navigator>
<Stack.Screen
name="home"
component={Home}
options={{
title: "DayLeez",
headerTitleAlign: "center",
// headerTitleStyle: { fontFamily: "league spartan" },
}}
/>
<Stack.Screen
name="Store"
component={Store}
options={{
title: " ",
headerTitleAlign: "center",
// headerStyle: { backgroundColor: "orange" },
}}
/>
<Stack.Screen
name="Product"
component={Product}
options={{
title: "DayLeez",
headerTitleAlign: "center",
}}
/>
</Stack.Navigator>
);
}
function SearchStack() {
return (
<Stack.Navigator>
<Stack.Screen
name="search"
component={Search}
options={{
headerShown: false,
}}
/>
<Stack.Screen
name="Store"
component={Store}
options={{
title: " ",
headerTitleAlign: "center",
// headerStyle: { backgroundColor: "orange" },
}}
/>
<Stack.Screen
name="Product"
component={Product}
options={{
title: "DayLeez",
headerTitleAlign: "center",
}}
/>
</Stack.Navigator>
);
}
function LeezStack() {
return (
<Stack.Navigator>
<Stack.Screen
name="leez"
component={Leez}
options={{
title: "Leez",
headerTitleAlign: "center",
}}
/>
<Stack.Screen
name="Store"
component={Store}
options={{
title: " ",
headerTitleAlign: "center",
// headerStyle: { backgroundColor: "orange" },
}}
/>
<Stack.Screen
name="Product"
component={Product}
options={{
title: "DayLeez",
headerTitleAlign: "center",
}}
/>
</Stack.Navigator>
);
}
function WishlistStack() {
return (
<Stack.Navigator>
<Stack.Screen
name="wishlist"
component={Wishlist}
options={{
title: "Mes Favoris",
headerTitleAlign: "center",
}}
/>
<Stack.Screen
name="Store"
component={Store}
options={{
title: " ",
headerTitleAlign: "center",
// headerStyle: { backgroundColor: "orange" },
}}
/>
<Stack.Screen
name="Product"
component={Product}
options={{
title: "DayLeez",
headerTitleAlign: "center",
}}
/>
</Stack.Navigator>
);
}
function ProfilStack() {
return (
<Stack.Navigator>
<Stack.Screen
name="profil"
component={Profil}
options={{
title: "Paramètres",
headerTitleAlign: "center",
}}
/>
<Stack.Screen
name="Compte"
component={Compte}
options={{
title: "Compte",
headerTitleAlign: "center",
}}
/>
<Stack.Screen
name="EditPass"
component={EditPass}
options={{
title: "Compte",
headerTitleAlign: "center",
}}
/>
{/* add edit account page ... */}
</Stack.Navigator>
);
}
const NavigationWithTheme = () => {
const { theme } = useContext(ThemeContext);
return (
<NavigationContainer theme={theme == "light" ? DefaultTheme : DarkTheme}>
<Tab.Navigator
screenOptions={({ route }) => ({
tabBarIcon: ({ focused, color, size }) => {
if (route.name === "Home") {
// iconName = focused ? "home" : "home2";
return <AntDesign name="home" size={size} color={color} />;
} else if (route.name === "Search") {
return <AntDesign name="search1" size={size} color={color} />;
} else if (route.name === "Leez") {
return (
<View
style={{
padding: 2,
borderRadius: 100,
borderColor: color,
borderWidth: 2,
}}
>
<MaterialCommunityIcons
name="percent"
size={20}
color={color}
/>
</View>
);
} else if (route.name === "Wishlist") {
return <AntDesign name="hearto" size={size} color={color} />;
} else if (route.name === "Profil") {
return (
<Ionicons name="person-outline" size={size} color={color} />
);
}
},
headerShown: false,
// route.name == "Leez" || route.name == "Search" ? false : true,
tabBarActiveTintColor: "tomato",
tabBarInactiveTintColor: theme == "light" ? "black" : "white",
tabBarShowLabel: false,
tabBarVisibilityAnimationConfig: "enable",
tabBarStyle: [
{
display: "flex",
// backgroundColor: colorScheme,
},
null,
],
})}
>
<Tab.Screen name="Home" component={HomeStack} />
<Tab.Screen name="Search" component={SearchStack} />
<Tab.Screen name="Leez" component={LeezStack} />
<Tab.Screen name="Wishlist" component={WishlistStack} />
<Tab.Screen name="Profil" component={ProfilStack} />
</Tab.Navigator>
</NavigationContainer>
);
};
return (
<ThemeProvider>
<NavigationWithTheme />
</ThemeProvider>
);
}