-
Notifications
You must be signed in to change notification settings - Fork 1
/
App.js
29 lines (26 loc) · 1.04 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
import React from 'react';
import { Platform } from 'react-native';
import { NavigationContainer } from '@react-navigation/native';
import { SafeAreaProvider } from 'react-native-safe-area-context';
import { createStackNavigator } from '@react-navigation/stack';
import BottomTabNavigation from './src/components/navigation/BottomTabNavigation/BottomTabNavigation';
import DrawerNavigation from './src/components/navigation/DrawerNavigation/DrawerNavigation';
import { AuthProvider } from './src/context/ContextProvider';
const Stack = createStackNavigator();
const PlatformSpecificNavigator = Platform.select({
ios: () => BottomTabNavigation,
android: () => DrawerNavigation,
})();
export default function App() {
return (
<AuthProvider>
<SafeAreaProvider>
<NavigationContainer>
<Stack.Navigator screenOptions={{ headerShown: false }}>
<Stack.Screen name='Root' component={PlatformSpecificNavigator} />
</Stack.Navigator>
</NavigationContainer>
</SafeAreaProvider>
</AuthProvider>
);
}