-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
88 lines (83 loc) · 2.74 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
import {Text, View, StatusBar} from 'react-native';
import CategoriesScreen from './src/screens/CategoriesScreen';
import {NavigationContainer} from '@react-navigation/native';
import {createNativeStackNavigator} from '@react-navigation/native-stack';
import MealsOverViewScreen from './src/screens/MealsOverViewScreen';
import MealDetailsScreen from './src/screens/MealDetailsScreen';
import FavoritesScreen from './src/screens/FavoritesScreen';
import FavoritesContextProvider from './src/store/context/favorites-context';
import {createDrawerNavigator} from '@react-navigation/drawer';
import Icon from 'react-native-vector-icons/FontAwesome';
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}) => (
<Icon name="list" color={color} size={size} />
)
}}
/>
<Drawer.Screen
name="Favorites"
component={FavoritesScreen}
options={{
drawerIcon: ({color, size}) => (
<Icon name="star" color={color} size={size} />
)
}}
/>
</Drawer.Navigator>
);
}
const App = () => {
return (
<>
<StatusBar barStyle="light-content" />
<FavoritesContextProvider>
<NavigationContainer>
<Stack.Navigator
screenOptions={{
headerStyle: {backgroundColor: '#351401'},
headerTintColor: 'white',
contentStyle: {backgroundColor: '#3f2f25'}
}}>
<Stack.Screen
name="Drawer"
component={DrawerNavigator}
options={{
headerShown: false
}}
/>
<Stack.Screen
name="MealsOverview"
component={MealsOverViewScreen}
// options={({ route, navigation }) => {
// const catId = route.params.categoryId;
// return {
// title: catId,
// };
// }}
/>
<Stack.Screen name="MealDetails" component={MealDetailsScreen} />
</Stack.Navigator>
</NavigationContainer>
</FavoritesContextProvider>
</>
);
};
export default App;