forked from stevenpersia/tinder-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
90 lines (88 loc) · 2.08 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
import React from "react";
import { Text } from "react-native";
import { createBottomTabNavigator, createAppContainer } from "react-navigation";
import styles from "./assets/styles";
import HomeScreen from "./containers/Home";
import MatchesScreen from "./containers/Matches";
import MessagesScreen from "./containers/Messages";
import ProfileScreen from "./containers/Profile";
import Icon from "./components/Icon";
const App = createBottomTabNavigator(
{
Explore: {
screen: HomeScreen,
navigationOptions: {
tabBarIcon: ({ focused }) => {
const iconFocused = focused ? "#7444C0" : "#363636";
return (
<Text style={[styles.iconMenu, { color: iconFocused }]}>
<Icon name="explore" />
</Text>
);
}
}
},
Matches: {
screen: MatchesScreen,
navigationOptions: {
tabBarIcon: ({ focused }) => {
const iconFocused = focused ? "#7444C0" : "#363636";
return (
<Text style={[styles.iconMenu, { color: iconFocused }]}>
<Icon name="heart" />
</Text>
);
}
}
},
Chat: {
screen: MessagesScreen,
navigationOptions: {
tabBarIcon: ({ focused }) => {
const iconFocused = focused ? "#7444C0" : "#363636";
return (
<Text style={[styles.iconMenu, { color: iconFocused }]}>
<Icon name="chat" />
</Text>
);
}
}
},
Profile: {
screen: ProfileScreen,
navigationOptions: {
tabBarIcon: ({ focused }) => {
const iconFocused = focused ? "#7444C0" : "#363636";
return (
<Text style={[styles.iconMenu, { color: iconFocused }]}>
<Icon name="user" />
</Text>
);
}
}
}
},
{
tabBarOptions: {
activeTintColor: "#7444C0",
inactiveTintColor: "#363636",
labelStyle: {
fontSize: 14,
textTransform: "uppercase",
paddingTop: 10
},
style: {
backgroundColor: "#FFF",
borderTopWidth: 0,
paddingVertical: 30,
height: 60,
marginBottom: 0,
shadowOpacity: 0.05,
shadowRadius: 10,
shadowColor: "#000",
shadowOffset: { height: 0, width: 0 }
}
}
}
);
export default createAppContainer(App);