Merge pull request #1245 from esteemapp/bugfix/wallet-to-profile

Changed wallet icon with profile icon
This commit is contained in:
uğur erdal 2019-11-07 19:09:30 +03:00 committed by GitHub
commit 8327c82a80
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ export default EStyleSheet.create({
zIndex: 1, zIndex: 1,
position: 'absolute', position: 'absolute',
bottom: 0, bottom: 0,
marginHorizontal: 19, marginHorizontal: 20,
justifyContent: 'space-between', justifyContent: 'space-between',
}, },
navItem: { navItem: {

View File

@ -52,7 +52,7 @@ const BaseNavigator = createBottomTabNavigator(
screen: Profile, screen: Profile,
navigationOptions: () => ({ navigationOptions: () => ({
tabBarIcon: ({ tintColor }) => ( tabBarIcon: ({ tintColor }) => (
<Icon iconType="MaterialIcons" name="credit-card" color={tintColor} size={26} /> <Icon iconType="MaterialIcons" name="person-outline" color={tintColor} size={26} />
), ),
}), }),
}, },