forked from udaybansal19/Shimi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathScreens.js
283 lines (272 loc) · 6.96 KB
/
Screens.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
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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
import { Animated, Dimensions, Easing } from "react-native";
// header for screens
import { Header, Icon } from "../components";
import { argonTheme, tabs } from "../constants";
import Articles from "../screens/Articles";
import { Block } from "galio-framework";
// screens
import Elements from "../screens/Elements";
import Home from "../screens/Home";
import Onboarding from "../screens/Onboarding";
import Pro from "../screens/Pro";
import Profile from "../screens/Profile";
import React from "react";
import Register from "../screens/Register";
import Wishlist from "../screens/WishList";
import ProductScreen from "../screens/ProductScreen";
import SearchScreen from "../screens/SearchScreen";
import { createBottomTabNavigator } from "@react-navigation/bottom-tabs";
import { createStackNavigator } from "@react-navigation/stack";
// for the bottom tab navigation icons
// need to reduce this in later revisions for optimisation
import { Entypo } from "@expo/vector-icons";
import { Ionicons } from "@expo/vector-icons";
// also need to remove redundant files from galio framework
const { width } = Dimensions.get("screen");
const Stack = createStackNavigator();
const BottomTab = createBottomTabNavigator();
function WishlistStack(props) {
return (
<Stack.Navigator
screenOptions={{
mode: "card",
headerShown: "screen",
}}
>
<Stack.Screen
name="Wishlist"
component={Wishlist}
options={{
// the top navbar part see Header.js in components
header: ({ navigation, scene }) => (
<Header
title="Wishlist"
bgColor="#F8F9FE"
back
center
navigation={navigation}
scene={scene}
transparent
titleColor="#110F0F"
/>
),
cardStyle: { backgroundColor: "#F8F9FE" },
}}
/>
<Stack.Screen
name="Pro"
component={Pro}
options={{
header: ({ navigation, scene }) => (
<Header
title=""
back
white
transparent
navigation={navigation}
scene={scene}
/>
),
headerTransparent: true,
}}
/>
</Stack.Navigator>
);
}
function ProfileStack(props) {
return (
<Stack.Navigator
initialRouteName="Profile"
screenOptions={{
mode: "card",
headerShown: "screen",
}}
>
<Stack.Screen
name="Profile"
component={Profile}
options={{
header: ({ navigation, scene }) => (
<Header
transparent
white
title="Profile"
navigation={navigation}
scene={scene}
/>
),
cardStyle: { backgroundColor: "#FFFFFF" },
headerTransparent: true,
}}
/>
<Stack.Screen
name="Pro"
component={Pro}
options={{
header: ({ navigation, scene }) => (
<Header
title=""
back
white
transparent
navigation={navigation}
scene={scene}
/>
),
headerTransparent: true,
}}
/>
</Stack.Navigator>
);
}
// need to change header options to remove header or remove icon in Header.js
function HomeStack(props) {
return (
<Stack.Navigator
initialRouteName="Home"
screenOptions={{
mode: "card",
headerShown: "screen",
}}
>
<Stack.Screen
name="Home"
component={Home}
options={{
header: ({ navigation, scene }) => (
<Header
transparent
white
title=""
navigation={navigation}
scene={scene}
/>
),
cardStyle: { backgroundColor: "#FFFFFF" },
headerTransparent: true,
}}
/>
<Stack.Screen
name="ProductScreen"
component={ProductScreen}
options={{
header: ({ navigation, scene }) => (
<Header
title=""
back
white
transparent
navigation={navigation}
scene={scene}
/>
),
headerTransparent: true,
}}
/>
<Stack.Screen
name="Search"
component={SearchScreen}
options={{
header: ({ navigation, scene }) => (
<Header
title=""
back
white
transparent
navigation={navigation}
scene={scene}
/>
),
headerTransparent: true,
}}
/>
<Stack.Screen
name="Pro"
component={Pro}
options={{
header: ({ navigation, scene }) => (
<Header
title=""
back
white
transparent
navigation={navigation}
scene={scene}
/>
),
headerTransparent: true,
}}
/>
</Stack.Navigator>
);
}
export default function OnboardingStack(props) {
return (
<Stack.Navigator
screenOptions={{
mode: "card",
headerShown: false,
}}
>
<Stack.Screen
name="Onboarding"
component={Onboarding}
option={{
headerTransparent: true,
}}
/>
<Stack.Screen name="App" component={AppStack} />
</Stack.Navigator>
);
}
// bottom tab navigation
function AppStack(props) {
return (
<BottomTab.Navigator
tabBarOptions={{
activeTintColor: "#DD4A65", // Color of the icon and label for the active tab
inactiveTintColor: "black", // Color of the icon and label for the inactive tabs
labelStyle: {
fontSize: 16, // Font size of the tab label
},
style: {
backgroundColor: "blue", // Background color of the bottom tab bar
},
}}
>
<BottomTab.Screen
name="HomeStack"
component={HomeStack}
options={{
tabBarShowLabel: false,
headerShown: false,
tabBarIcon: ({ color, size }) => (
<Entypo name="home" size={size} color={color} />
),
}}
/>
<BottomTab.Screen
name="Wishlist"
component={WishlistStack}
options={{
tabBarShowLabel: false,
headerShown: false,
tabBarIcon: ({ color, size }) => (
<Entypo name="heart" size={size} color={color} />
),
}}
/>
<BottomTab.Screen
name="Profile"
component={ProfileStack}
options={{
tabBarShowLabel: false,
headerShown: false,
tabBarIcon: ({ color, size }) => (
<Ionicons name="person" size={size} color={color} />
),
}}
/>
</BottomTab.Navigator>
);
}