-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
126 lines (112 loc) · 3.79 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
import { StatusBar } from 'expo-status-bar';
import { StyleSheet, Text, View, Button } from 'react-native';
import { NavigationContainer } from '@react-navigation/native';
import { createNativeStackNavigator } from '@react-navigation/native-stack'
import { createDrawerNavigator } from '@react-navigation/drawer';
import { Ionicons } from '@expo/vector-icons'
import CategoriesScreen from './screens/CategoriesScreen';
import MealsOverviewScreen from './screens/MealsOverviewScreen';
import MealDetailScreen from './screens/MealDetailScreen';
import FavoritesScreen from './screens/FavoritesScreen';
import FavoritesContextProvider from './store/context/favorites-context';
import { store } from './store/redux/store';
import { Provider } from 'react-redux';
const Stack = createNativeStackNavigator();
const Drawer = createDrawerNavigator();
function DrawerNavigator() {
return <Drawer.Navigator
screenOptions={{
headerStyle: { backgroundColor: '#351401' },
headerTintColor: 'white',
sceneContainerStyle: { backgroundColor: '#3f2f25' },
drawerContentStyle: { backgroundColor: '#351401' },
drawerInactiveTintColor: 'white',
drawerActiveTintColor: '#351401',
drawerActiveBackgroundColor: '#e4baa1',
}}
>
<Drawer.Screen name='Categories' component={CategoriesScreen}
options={{
title: 'All Categories',
drawerIcon: ({ color, size }) => <Ionicons name='list' color={color} size={size} />
}}
/>
<Drawer.Screen name='Favorites' component={FavoritesScreen}
options={{
title: 'Favorites',
drawerIcon: ({ color, size }) => <Ionicons name='star' color={color} size={size} />
}}
/>
</Drawer.Navigator>
}
export default function App() {
return (
<>
<StatusBar style="light" />
<Provider store={store}>
{/* <FavoritesContextProvider> */}
<NavigationContainer>
<Stack.Navigator screenOptions={
{
headerStyle: { backgroundColor: '#351401' },
headerTintColor: 'white',
contentStyle: { backgroundColor: '#3f2f25' }
}
}>
{/* <Stack.Screen
name="MealsCategories"
component={CategoriesScreen}
options={{
title: 'Meals Categories',
// headerStyle: { backgroundColor: '#351401' },
// headerTintColor: 'white',
// contentStyle: { backgroundColor: '#3f2f25' }
}}
/> */}
<Stack.Screen
name="MealsCategories"
component={DrawerNavigator}
options={{
headerShown: false,
// headerStyle: { backgroundColor: '#351401' },
// headerTintColor: 'white',
// contentStyle: { backgroundColor: '#3f2f25' }
}}
/>
<Stack.Screen
name="MealsOverview"
component={MealsOverviewScreen}
// options={({ route, navigation }) => {
// const catId = route.params.categoryId
// return {
// title: catId,
// }
// }}
/>
<Stack.Screen
name="MealDetail"
component={MealDetailScreen}
options={{
title: 'About the Meal'
}}
// options={{
// headerRight: () => {
// return <Button title='Tap me!' />
// }
// }}
/>
</Stack.Navigator>
</NavigationContainer>
</Provider>
{/* </FavoritesContextProvider> */}
</>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});