[Set navigation bottom tab. follow the v2 docs - Only active tab shows its name.
Hi @congnguyen91 , please try to add forceTitlesDisplay: true
into bottomTabs
or just into option
object, which is a setting in v1
and see if this works.
reference: https://wix.github.io/react-native-navigation/v2/#/docs/styling?id=styling-the-statusbar
hi @swingywc I mean that it still happen. It only shows with active tab
options: {
bottomTab: {
title: "Home",
icon: Images.logo,
iconInsets: {
top: 6,
left: 0,
bottom: 6,
right: 0
},
forceTitlesDisplay: true
},
topBar: {
visible: false
},
forceTitlesDisplay: true
}
Also try:
appStyle: {
forceTitlesDisplay: true
},
(sorry for my comment with two accounts)
How about the answer on #3463 (use titleDisplayMode) ?
Thanks for react-native-navigation team. It's ok right now :)
bottomTab: {
text: "Home",
},
bottomTabs: {
titleDisplayMode: 'alwaysShow'
},
Most helpful comment
Thanks for react-native-navigation team. It's ok right now :)