-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStackNavigator.js
117 lines (99 loc) · 3.93 KB
/
StackNavigator.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
import React from 'react'
import { StyleSheet, Text, View } from 'react-native'
import { NavigationContainer } from '@react-navigation/native';
import { createBottomTabNavigator } from '@react-navigation/bottom-tabs';
import { createNativeStackNavigator } from '@react-navigation/native-stack';
//icons
import { AntDesign } from '@expo/vector-icons';
import { Entypo } from '@expo/vector-icons';
import { Ionicons } from '@expo/vector-icons';
import { FontAwesome5 } from '@expo/vector-icons';
// screens
import HomeScreen from './screens/HomeScreen';
import SavedScreen from './screens/SavedScreen';
import BookingScreen from './screens/BookingScreen';
import ProfileScreen from './screens/ProfileScreen';
import SearchScreen from './screens/SearchScreen';
import PlaceScreen from './screens/PlaceScreen';
const StackNavigator = () => {
const Tab = createBottomTabNavigator();
const Stack = createNativeStackNavigator();
function BottomTabs() {
return (
<Tab.Navigator
screenOptions={{
tabBarStyle: { height: 70, paddingBottom: 10 },
}}
>
<Tab.Screen
name='Home'
component={HomeScreen}
options={{
tabBarLabel: "Home",
headerShown: false,
tabBarIcon: ({ focused }) =>
focused ? (<Entypo name="home" size={24} color="#05BFDB" />) : (
<AntDesign name="home" size={24} color="black" />)
}} />
<Tab.Screen
name='Saved'
component={SavedScreen}
options={{
tabBarLabel: "Saved",
headerShown: true,
tabBarIcon: ({ focused }) =>
focused ? (<AntDesign name="heart" size={24} color="#05BFDB" />) : (<AntDesign name="hearto" size={24} color="black" />)
}} />
<Tab.Screen
name='Booking'
component={BookingScreen}
options={{
tabBarLabel: "Booking",
headerShown: true,
tabBarIcon: ({ focused }) =>
focused ? (
<Ionicons name="notifications-sharp" size={24} color="#05BFDB" />)
: (<Ionicons name="notifications-outline" size={24} color="black" />)
}} />
<Tab.Screen
name='Profile'
component={ProfileScreen}
options={{
tabBarLabel: "Profile",
headerShown: true,
tabBarIcon: ({ focused }) =>
focused ? (<FontAwesome5 name="user-alt" size={24} color="#05BFDB" />) : (<FontAwesome5 name="user" size={24} color="black" />)
}} />
</Tab.Navigator>
)
}
return (
<NavigationContainer>
<Stack.Navigator>
<Stack.Screen
name="Main"
component={BottomTabs}
options={{
headerShown: false
}}
/>
<Stack.Screen
name="Search"
component={SearchScreen}
options={{
headerShown: true
}}
/>
<Stack.Screen
name="Place"
component={PlaceScreen}
options={{
headerShown: true
}}
/>
</Stack.Navigator>
</NavigationContainer>
)
}
export default StackNavigator
const styles = StyleSheet.create({})