-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.tsx
79 lines (76 loc) · 2.06 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
import { StatusBar } from 'expo-status-bar';
import { StyleSheet, Text, View } from 'react-native';
import { NavigationContainer, useNavigation } from '@react-navigation/native';
import { createNativeStackNavigator, NativeStackNavigationOptions } from '@react-navigation/native-stack';
import SplashScreen from './src/screens/SplashScreen';
import { IRootStackParamList } from './src/@types/common';
import HomeScreen from './src/screens/HomeScreen';
import GlobalContextProvider from './src/contexts/GlobalContext';
import CategoryScreen from './src/screens/CategoryScreen';
import ElectionScreen from './src/screens/ElectionScreen';
import Toast from "react-native-toast-message"
export default function App() {
const { Navigator, Screen } = createNativeStackNavigator<IRootStackParamList>()
type ScreenArrayType = {
name: keyof IRootStackParamList;
component: React.FC;
options: NativeStackNavigationOptions
}
const ScreensArray: ScreenArrayType[] = [
{
name: "Landing",
component: SplashScreen,
options: {
animation: "fade",
headerShown: false
}
},
{
name: "Category",
component: CategoryScreen,
options: {
animation: "fade",
headerShown: false
}
},
{
name: "Home",
component: HomeScreen,
options: {
animation: "fade",
headerShown: false
}
},
{
name: "Election",
component: ElectionScreen,
options: {
animation: "fade",
headerShown: false
}
},
]
return (
<GlobalContextProvider>
<NavigationContainer>
<StatusBar style='auto' />
<Navigator initialRouteName='Landing'>
{ ScreensArray.map((screen) => (
<Screen
key={screen.name}
{...screen}
/>
)) }
</Navigator>
</NavigationContainer>
</GlobalContextProvider>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});