-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
67 lines (61 loc) · 2.31 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
import React from 'react';
import { createAppContainer, createSwitchNavigator } from 'react-navigation';
import { createStackNavigator } from 'react-navigation-stack';
import { createDrawerNavigator } from 'react-navigation-drawer';
import DrawerContentComponent from './src/components/DrawerContentComponent'
import SigninScreen from './src/screens/SigninScreen';
import SignupScreen from './src/screens/SignupScreen';
import AccountScreen from './src/screens/AccountScreen';
import MapScreen from './src/screens/MapScreen';
import LocationListScreen from './src/screens/LocationListScreen';
import LocationEditScreen from './src/screens/LocationEditScreen';
import ListEditScreen from './src/screens/ListEditScreen';
import {Provider as AuthProvider} from './src/context/AuthContext';
import {Provider as ListProvider} from './src/context/ListContext';
import {Provider as LocationProvider} from './src/context/LocationContext';
import {Provider as LocationEditProvider} from './src/context/LocationEditContext'
import {Provider as ListQueueProvider} from './src/context/ListQueueContext';
import {Provider as LocationQueueProvider} from './src/context/LocationQueueContext';
import {setNavigator} from './src/navigationRef';
import { SafeAreaProvider } from 'react-native-safe-area-context';
import { LogBox } from "react-native"
LogBox.ignoreAllLogs(true)
const Drawer = createDrawerNavigator({
Map: MapScreen,
},{
drawerPosition: 'right',
drawerType: 'slide',
contentComponent: DrawerContentComponent,
});
Drawer.navigationOptions = {
headerShown: false
}
const Stack = createStackNavigator({
Drawer,
LocationList: LocationListScreen,
LocationEdit: LocationEditScreen,
ListEdit: ListEditScreen,
Settings: AccountScreen,
Signup: SignupScreen,
Signin: SigninScreen,
})
const App = createAppContainer(Stack);
export default () => {
return (
<SafeAreaProvider>
<AuthProvider>
<ListQueueProvider>
<LocationQueueProvider>
<ListProvider>
<LocationProvider>
<LocationEditProvider>
<App ref={ (navigator)=>{ setNavigator(navigator) }}/>
</LocationEditProvider>
</LocationProvider>
</ListProvider>
</LocationQueueProvider>
</ListQueueProvider>
</AuthProvider>
</SafeAreaProvider>
)
}