-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathApp.js
138 lines (119 loc) · 3.82 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
127
128
129
130
131
132
133
134
135
136
137
138
import React from 'react';
import { NavigationContainer } from '@react-navigation/native';
import { createDrawerNavigator, DrawerItem } from '@react-navigation/drawer';
import { createStackNavigator } from '@react-navigation/stack';
import { StyleSheet, Text, View,Button } from 'react-native';
import Home from './src/screens/Home';
import storeLocator from './src/screens/storeLocator';
import sResults from './src/screens/sResults';
// import { StackRouter } from 'react-navigation';
// import { DrawerItem } from '@react-navigation/drawer';
import Icon from 'react-native-vector-icons/Ionicons';
//import Navigation from './src/navconfig.js/navigation';
// import Stack from './src/components/searchBar';
// import Screenss from './src/components/searchBar';
// header + menu code, route home page (as in home page is desplayed)
const HomeStack = createStackNavigator();
//const RecipesStack = createStackNavigator();
const LocatorStack = createStackNavigator();
const Drawer = createDrawerNavigator();
// Home screen tab, aka default tab
const HomeStackScreen = ({navigation}) => (
<HomeStack.Navigator screenOptions={{
headerStyle: {
backgroundColor: '#f5df62',
},
headerTintColor: '#fff',
headerTitleStyle: {
fontWeight: 'bold'
}
}}>
<HomeStack.Screen name="Home" component={Home}
//creating screen for when the drawer is opened
options={{
title:'Home Of Lazy Cooks',
headerLeft: () => (
//what the header will hold; menu icon on top that will open drawer
<Icon.Button name="menu"
size={25}
backgroundColor="#f5df62"
onPress={() => navigation.openDrawer()}></Icon.Button>
)
}}/>
</HomeStack.Navigator>
);
// Recipes Tab
//const RecipesStackScreen = ({navigation}) => (
//<RecipesStack.Navigator screenOptions={{
// headerStyle: {
// backgroundColor: '#8bc225',
// },
//headerTintColor: '#fff',
// headerTitleStyle: {
// fontWeight: 'bold',
// }
// }}>
//<RecipesStack.Screen name='Recipes'component={Recipes}
// options={{
// headerLeft: () => (
// <Icon.Button name="menu"
// size={25}
// backgroundColor="#8bc225"
// onPress={() => navigation.openDrawer()}/>
// )
// }}/>
// </RecipesStack.Navigator>
//);
// Store Locator tab
const LocatorStackScreen = ({navigation}) => (
<LocatorStack.Navigator screenOptions={{
headerStyle: {
backgroundColor: '#f5df62',
},
headerTintColor: '#fff',
headerTitleStyle: {
fontWeight: 'bold',
}
}}>
<LocatorStack.Screen name='Store Locator'component={storeLocator}
options={{
headerLeft: () => (
<Icon.Button name="menu"
size={25}
backgroundColor="#f5df62"
onPress={() => navigation.openDrawer()}/>
)
}}/>
</LocatorStack.Navigator>
);
{/* <Drawer.Screen name = 'Search' component={sResults}/> */}
// class SearchBootan extends React.Component {
// render() {
// return (
// <View style={{ flex: 1, alignItems: 'center', justifyContent: 'center' }}>
// <Button
// title="Search"
// onPress={() => this.props.navigation.navigate('sResults')}
// />
// </View>
// );
// }
// }
export default function Menu() {
return (
<NavigationContainer>
<Drawer.Navigator initialRouteName="Home">
<Drawer.Screen name ='Home' component={HomeStackScreen}/>
<Drawer.Screen name = 'Store Locator' component={LocatorStackScreen }/>
</Drawer.Navigator>
</NavigationContainer>
)};
//<Drawer.Screen name ='Recipes' component={RecipesStackScreen}/>
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
}
});