-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
65 lines (61 loc) · 2.05 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
import { NavigationContainer } from '@react-navigation/native';
import { createNativeStackNavigator } from '@react-navigation/native-stack';
// Redux
import { Provider } from 'react-redux';
import { store } from './store';
// Screens
import HomeScreen from './screens/HomeSсreen';
import RestaurantScreen from './screens/RestaurantScreen';
import BasketScreen from './screens/BasketScreen';
import PreparingOrderScreen from './screens/PreparingOrderScreen';
import DeliveryScreen from './screens/DeliveryScreen';
import ProfileScreen from './screens/ProfileScreen';
import AllergyScreen from './screens/AllergyScreen';
import RestaurantsScreen from './screens/RestaurantsScreen';
const Stack = createNativeStackNavigator()
export default function App() {
return (
<Provider store={store}>
<NavigationContainer>
<Stack.Navigator>
<Stack.Screen name='Home' component={HomeScreen} />
<Stack.Screen name='Restaurant' component={RestaurantScreen} />
<Stack.Screen name='Restaurants' component={RestaurantsScreen} />
<Stack.Screen
name='Basket'
component={BasketScreen}
options={{
presentation: 'modal',
headerShown: false
}}
/>
<Stack.Screen
name='Preparing'
component={PreparingOrderScreen}
options={{
presentation: 'fullScreenModal',
headerShown: false
}}
/>
<Stack.Screen
name='Delivery'
component={DeliveryScreen}
options={{
presentation: 'fullScreenModal',
headerShown: false
}}
/>
<Stack.Screen
name='Allergy'
component={AllergyScreen}
options={{
presentation: 'modal',
headerShown: false
}}
/>
<Stack.Screen name='Profile' component={ProfileScreen} />
</Stack.Navigator>
</NavigationContainer>
</Provider>
);
}