TabNavigator
のラベルを非表示にするにはどうすればicons
のみ表示しますか?私は次のような場合:私はnavigationOptions
からtitle
を削除した場合TabNavigatorでラベルを非表示 - ReactNavigation
const Tabs = TabNavigator({
Home: {
screen:MainHome,
navigationOptions: ({ navigation }) => ({
title: "Home", //Tried to hide this for next tab Search.
tabBarIcon: ({ tintColor, focused }) => <View><MaterialIcons name="home"/></View>
})
},
Search: {
screen:TestComp1,
navigationOptions: ({ navigation }) => ({
//If no title it shows the name as Search.
tabBarIcon: ({ tintColor, focused }) => <View><MaterialIcons name="accessibility"/></View>
})
}
}, {
tabBarPosition: 'bottom',
tabBarOptions: {
showIcon: true,
activeTintColor: '#e91e63', //Not working for icons.
inactiveBackgroundColor: 'green', // Not working at all.
style: {backgroundColor: '#3498DB', height: 60, padding:0, margin:0}
}
});
をそれが(Home
またはSearch
)タブの名前が表示されます。私は、アイコンを表示し、アクティブなの色を変更したいだけですicon
。 activeTintColor
アイコンのために働いていません。