forked from JoelDeonDsouza/Ev-Pointer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
51 lines (48 loc) · 1.37 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
import { StatusBar } from "expo-status-bar";
import { StyleSheet, Text, View, SafeAreaProvider } from "react-native";
// redux //
import { Provider } from "react-redux";
import { store } from "./store";
// Navigation //
import { NavigationContainer } from "@react-navigation/native";
import { createNativeStackNavigator } from "@react-navigation/native-stack";
// Screens //
import InitialScreen from "./Screens/InitialScreen";
import MapScreen from "./Screens/MapScreen";
import Map from "./Screens/Map";
// stack navigation //
const Stack = createNativeStackNavigator();
export default function App() {
return (
<Provider store={store}>
<NavigationContainer>
<Stack.Navigator>
{/* <Stack.Screen
options={{ headerShown: false }}
name="InitialScreen"
component={InitialScreen}
/> */}
{/* map */}
<Stack.Screen
options={{ headerShown: false }}
name="MapScreen"
component={MapScreen}
/>
<Stack.Screen
options={{ headerShown: false }}
name="Map"
component={Map}
/>
</Stack.Navigator>
</NavigationContainer>
</Provider>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: "#fff",
alignItems: "center",
justifyContent: "center",
},
});