Skip to content

Commit fe7b917

Browse files
author
Ervin
committed
first
1 parent 1b4e6f4 commit fe7b917

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

App/navigation/Navigation.js

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,23 +39,23 @@ export const SignedIn = createAppContainer(createBottomTabNavigator(
3939
screen: Activity,
4040
navigationOptions: {
4141
tabBarIcon: ({ tintColor }) => (
42-
<Icon name="list" size={25} color={tintColor} />
42+
<Icon name="list" size={20} color={tintColor} style={{ marginBottom: -3 }} />
4343
)
4444
}
4545
},
4646
Activité: {
4747
screen: Home,
4848
navigationOptions: {
4949
tabBarIcon: ({ tintColor }) => (
50-
<Icon name="walking" size={25} color={tintColor} />
50+
<Icon name="walking" size={20} color={tintColor} style={{ marginBottom: -3 }} />
5151
)
5252
},
5353
},
5454
Profil: {
5555
screen: Profil,
5656
navigationOptions: {
5757
tabBarIcon: ({ tintColor }) => (
58-
<Icon name="user-alt" size={25} color={tintColor} />
58+
<Icon name="user-alt" size={20} color={tintColor} style={{ marginBottom: -3 }} />
5959
)
6060
}
6161
},
@@ -64,8 +64,7 @@ export const SignedIn = createAppContainer(createBottomTabNavigator(
6464
initialRouteName: 'Activité',
6565
tabBarOptions: {
6666
style: {
67-
activeTintColor: '#2C5077',
68-
height: 60
67+
activeTintColor: '#2C5077'
6968
}
7069
}
7170
}

0 commit comments

Comments
 (0)