-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
191 lines (158 loc) · 5.24 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
184
185
186
187
188
189
190
191
import React, { useState, useEffect } from 'react';
import * as Font from 'expo-font';
import { NavigationContainer } from '@react-navigation/native';
import { createNativeStackNavigator } from '@react-navigation/native-stack';
import { createBottomTabNavigator } from '@react-navigation/bottom-tabs';
import { MaterialIcons } from '@expo/vector-icons';
import AppLoading from 'expo-app-loading';
import { ThemeProvider } from './src/theme/ThemeProvider';
import { useTheme } from './src/theme/ThemeProvider';
import LoginScreen from './src/screens/LoginScreen';
import FindTutor from './src/screens/FindTutor';
import HomeScreen from './src/screens/HomeScreen';
import BookingsScreen from './src/screens/BookingsScreen';
import MessagesScreen from './src/screens/MessagesScreen';
import AccountScreen from './src/screens/AccountScreen';
import TutorProfileScreen from './src/screens/Tutor/TutorProfileScreen';
import TutorCheckingScreen from './src/screens/TutorCheckingScreen'
import { Text } from 'react-native';
import DashboardScreen from './src/screens/Tutor/DashboardScreen';
import ChildDetailsForm from './src/components/ChildDetailsForm';
import BookingSummary from './src/components/BookingSummary';
import PaymentSection from './src/components/PaymentSection';
import PaymentInfo from './src/screens/PaymentInfo';
import PasswordChange from './src/screens/PasswordChange';
import EmailUpdate from './src/screens/EmailUpdate';
import OTP from './src/screens/OTP';
import EmailUpdateSuccess from './src/screens/EmailUpdateSuccess';
const Stack = createNativeStackNavigator();
const Tab = createBottomTabNavigator();
function MainTabs() {
const {theme} = useTheme();
return (
<Tab.Navigator
screenOptions={({ route }) => ({
tabBarIcon: ({ focused, color, size }) => {
let iconName;
switch (route.name) {
case 'Home':
iconName = 'home';
break;
case 'Bookings':
iconName = 'book';
break;
case 'FindTutor':
iconName = 'search';
break;
case 'Messages':
iconName = 'message';
break;
case 'Account':
iconName = 'account-circle';
break;
}
return <MaterialIcons name={iconName} size={focused ? 30 : 25} color={color} />;
},
tabBarLabel: ({ focused, color }) => (
<Text style={{ color, fontSize: focused ? 14 : 12, fontFamily: theme.fonts.regular }}>{route.name}</Text>
),
headerShown: false,
tabBarActiveTintColor: '#FC5C99',
tabBarInactiveTintColor: 'gray',
tabBarStyle: {
height: 60,
paddingBottom: 5,
paddingTop: 5,
},
})}
>
{}
<Tab.Screen name="Home" component={HomeScreen} />
<Tab.Screen name="Bookings" component={BookingsScreen} />
<Tab.Screen name="FindTutor" component={FindTutor} />
<Tab.Screen name="Messages" component={MessagesScreen} />
<Tab.Screen name="Account" component={AccountScreen} />
</Tab.Navigator>
);
}
export default function App() {
const [fontsLoaded, setFontsLoaded] = useState(false);
const loadFonts = async () => {
await Font.loadAsync({
'CustomFont-Regular': require('./assets/fonts/IBM_Plex_Sans/IBMPlexSans-Regular.ttf'),
'CustomFont-Bold': require('./assets/fonts/IBM_Plex_Sans/IBMPlexSans-Bold.ttf'),
});
setFontsLoaded(true);
};
useEffect(() => {
loadFonts();
}, []);
if (!fontsLoaded) {
return <AppLoading />;
}
return (
<ThemeProvider>
<NavigationContainer>
<Stack.Navigator
initialRouteName="Login"
screenOptions={{
headerShown: false,
}}
>
{}
<Stack.Screen name="Login" component={LoginScreen} />
{}
<Stack.Screen
name="MainTabs"
component={MainTabs}
/>
<Stack.Screen
name="FindTutor"
component={FindTutor}
/>
<Stack.Screen
name="Dashboard"
component={DashboardScreen}
/>
<Stack.Screen
name="TutorProfile"
component={TutorProfileScreen}
/>
<Stack.Screen
name="TutorChecking"
component={TutorCheckingScreen}
/>
<Stack.Screen
name="BookingSummary"
component={BookingSummary}
/>
<Stack.Screen
name="PaymentSection"
component={PaymentSection}
/>
<Stack.Screen
name="PaymentInfo"
component={PaymentInfo}
/>
<Stack.Screen
name="PasswordChange"
component={PasswordChange}
/>
<Stack.Screen
name="EmailUpdate"
component={EmailUpdate}
/>
<Stack.Screen
name="OTP"
component={OTP}
/>
<Stack.Screen
name="EmailUpdateSuccess"
component={EmailUpdateSuccess}
/>
<Stack.Screen name="ChildDetails" component={ChildDetailsForm} />
</Stack.Navigator>
</NavigationContainer>
</ThemeProvider>
);
}