-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.tsx
96 lines (91 loc) · 2.87 KB
/
App.tsx
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
import { StatusBar } from "expo-status-bar";
import { NavigationContainer } from "@react-navigation/native";
import { createNativeStackNavigator } from "@react-navigation/native-stack";
import { createDrawerNavigator } from "@react-navigation/drawer";
import CategoriesScreen from "./screens/CategoriesScreen";
import MealsOverviewScreen from "./screens/MealsOverviewScreen";
import MealDetailScreen from "./screens/MealDetailScreen";
import FavouritesScreen from "./screens/FavouritesScreen";
import { FavouriteMealsProvider } from "./contex/FavouriteMealsContext";
import { Ionicons } from "@expo/vector-icons";
export type RootDrawerParamList = {
Categories: undefined;
Favourites: undefined;
};
export type RootStackParamList = {
Drawer: undefined;
MealsOverview: { id: string };
MealDetail: { id: string };
};
const Drawer = createDrawerNavigator<RootDrawerParamList>();
const Stack = createNativeStackNavigator<RootStackParamList>();
function DrawerNavigator() {
return (
<Drawer.Navigator
screenOptions={{
headerStyle: { backgroundColor: "#351401" },
headerTintColor: "#fff",
sceneContainerStyle: { backgroundColor: "#24180f" },
drawerContentStyle: { backgroundColor: "#351401" },
drawerInactiveTintColor: "#fff",
drawerActiveTintColor: "#351401",
drawerActiveBackgroundColor: "#e4baa1",
}}
>
<Drawer.Screen
name="Categories"
component={CategoriesScreen}
options={{
title: "All Categories",
drawerIcon: ({ color, size }) => {
return <Ionicons name="list" color={color} size={size} />;
},
}}
/>
<Drawer.Screen
name="Favourites"
component={FavouritesScreen}
options={{
drawerIcon: ({ color, size }) => {
return <Ionicons name="star" color={color} size={size} />;
},
}}
/>
</Drawer.Navigator>
);
}
export default function App() {
return (
<>
<StatusBar style="light" />
<FavouriteMealsProvider>
<NavigationContainer>
<Stack.Navigator
screenOptions={{
headerStyle: { backgroundColor: "#351401" },
headerTintColor: "#fff",
contentStyle: { backgroundColor: "#24180f" },
}}
>
<Stack.Screen
name="Drawer"
component={DrawerNavigator}
options={{
headerShown: false,
}}
/>
<Stack.Screen
name="MealsOverview"
component={MealsOverviewScreen}
/>
<Stack.Screen
name="MealDetail"
component={MealDetailScreen}
options={{ title: "About the meal" }}
/>
</Stack.Navigator>
</NavigationContainer>
</FavouriteMealsProvider>
</>
);
}