-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathApp.js
81 lines (78 loc) · 2.49 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
import * as React from 'react';
import { AccountDetailsScreen } from './screens/AccountDetailsScreen';
import { AccountSettingsMenu } from './screens/AccountSettingsMenu';
import { createNativeStackNavigator } from '@react-navigation/native-stack';
import { FilterScreen } from './screens/Filter';
import { HomeScreen } from './screens/Home';
import { IngredientScreen } from './screens/Ingredients';
import { LoginScreen } from './screens/Login';
import { NavigationContainer } from '@react-navigation/native';
import { RecipeScreen } from './screens/Recipe';
import { RecipeListScreen } from './screens/RecipeList';
import { ShoppingListScreen } from './screens/ShoppingList';
import DietaryAllergenFilterScreen from './screens/DietaryAllergenFilter';
const Stack = createNativeStackNavigator();
function App() {
return (
<NavigationContainer>
<Stack.Navigator initialRouteName='Login'>
<Stack.Screen
name='Login'
component={LoginScreen}
options={{ headerShown: false }}
/>
<Stack.Screen
name='Home'
component={HomeScreen}
options={{ headerShown: false }}
/>
<Stack.Screen
name='Ingredients'
component={IngredientScreen}
options={{ headerShown: true }}
/>
<Stack.Screen
name='Recipe'
component={RecipeScreen}
options={{ headerShown: true }}
/>
<Stack.Screen
name='RecipeList'
component={RecipeListScreen}
options={{ headerShown: true }}
/>
<Stack.Screen
name='Filter'
component={FilterScreen}
options={{ headerShown: true }}
/>
<Stack.Screen
name='Shopping List'
component={ShoppingListScreen}
options={{ headerShown: true }}
/>
<Stack.Screen
name='Account Details'
component={AccountDetailsScreen}
options={{ headerShown: true }}
/>
<Stack.Screen
name='DietaryAllergenFilterScreen'
component={DietaryAllergenFilterScreen}
options={{ headerShown: true }}
/>
<Stack.Screen
name='Account'
component={AccountSettingsMenu}
options={{ headerShown: false }}
/>
{/* <Stack.Screen
name='Signup'
component={SignUpScreen}
options={{ headerShown: false }}
/> */}
</Stack.Navigator>
</NavigationContainer>
);
}
export default App;