forked from faby-tb/laboratorio-moviles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Router.js
137 lines (129 loc) · 4.07 KB
/
Router.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
import React from 'react';
import { NavigationContainer } from '@react-navigation/native';
import { createStackNavigator } from '@react-navigation/stack';
import { createBottomTabNavigator } from '@react-navigation/bottom-tabs';
import { AntDesign, FontAwesome, FontAwesome5 } from '@expo/vector-icons';
import { HomeScreen, HelpScreen, ComunityScreen, ProfileScreen, DetailsScreen } from './src/screens';
import constants from './src/utils/constants';
import { Dimensions } from 'react-native';
const HomeStack = createStackNavigator();
const Tab = createBottomTabNavigator();
const { width } = Dimensions.get('window');
const HomeStackScreen = () => {
return (
<HomeStack.Navigator
initialRouteName={constants.SCREEN.HOME}
screenOptions={{
headerLeft: (props) =>
props.canGoBack && (
<AntDesign
name="arrowleft"
size={24}
color={constants.COLORS.PRIMARY}
{...props}
style={{ marginLeft: 20 }}
/>
),
}}
>
<HomeStack.Screen
name={constants.SCREEN.HOME}
component={HomeScreen}
options={{
title: 'Magic: The Gathering',
headerShown: false,
}}
/>
<HomeStack.Screen
name={constants.SCREEN.COMUNITY}
component={ComunityScreen}
options={{
title: 'Magic: The Gathering',
headerBackTitleVisible: false,
headerTransparent: true,
}}
/>
<HomeStack.Screen
name={constants.SCREEN.HELP}
component={HelpScreen}
options={{
title: 'Magic: The Gathering',
headerBackTitleVisible: false,
headerTransparent: true,
}}
/>
<HomeStack.Screen
name={constants.SCREEN.PROFILE}
component={ProfileScreen}
options={{
title: 'Magic: The Gathering',
headerBackTitleVisible: false,
headerTransparent: true,
}}
/>
<HomeStack.Screen
name={constants.SCREEN.DETAILS}
component={DetailsScreen}
options={{
title: '',
headerBackTitleVisible: false,
headerTransparent: true,
}}
/>
</HomeStack.Navigator>
);
};
const Router = () => (
<NavigationContainer >
<Tab.Navigator
screenOptions={({ route }) => ({
tabBarIcon: ({ focused }) => {
let iconName;
if (route.name === constants.SCREEN.MAIN) {
iconName = 'appstore1';
return <AntDesign name={iconName} size={24} color={focused ? constants.COLORS.WHITE : constants.COLORS.LIGHT_GRAY2} />;
} else if (route.name === constants.SCREEN.PROFILE) {
iconName = 'user';
return <FontAwesome name={iconName} size={24} color={focused ? constants.COLORS.WHITE : constants.COLORS.LIGHT_GRAY2} />;
} else if (route.name === constants.SCREEN.HELP) {
iconName = 'questioncircle';
return <AntDesign name={iconName} size={24} color={focused ? constants.COLORS.WHITE : constants.COLORS.LIGHT_GRAY2} />;
} else if (route.name === constants.SCREEN.COMUNITY) {
iconName = 'users';
return <FontAwesome5 name={iconName} size={24} color={focused ? constants.COLORS.WHITE : constants.COLORS.LIGHT_GRAY2} />;
}
},
})}
tabBarOptions={{
showLabel: true,
activeTintColor: constants.COLORS.WHITE,
inactiveTintColor: constants.COLORS.LIGHT_GRAY2,
keyboardHidesTabBar: true,
tabStyle: {
backgroundColor: 'rgba(0,0,0,0)',
},
safeAreaInsets: {
bottom: 7,
},
style: {
backgroundColor: constants.COLORS.GRAY,
borderTopColor: 'rgba(0,0,0,0)',
borderTopLeftRadius: 25,
borderTopRightRadius: 25,
position: 'absolute',
bottom: 0,
width: width,
height: 80,
zIndex: 10,
padding: 10,
},
}}
>
<Tab.Screen name={constants.SCREEN.MAIN} component={HomeStackScreen} />
<Tab.Screen name={constants.SCREEN.COMUNITY} component={ComunityScreen} />
<Tab.Screen name={constants.SCREEN.HELP} component={HelpScreen} />
<Tab.Screen name={constants.SCREEN.PROFILE} component={ProfileScreen} />
</Tab.Navigator>
</NavigationContainer>
);
export default Router;