refactor: don't pass orientation to label

This commit is contained in:
satyajit.happy
2019-10-22 15:30:49 +02:00
parent de2b6d8715
commit 3bf46e1ad2
3 changed files with 6 additions and 12 deletions

View File

@@ -49,7 +49,10 @@ export default function BottomTabsScreen() {
name="chat"
component={Chat}
options={{
title: 'Chat',
tabBarLabel: props => {
console.log(props);
return null;
},
tabBarIcon: getTabBarIcon('message-reply'),
tabBarButtonComponent: TouchableBounce,
}}