我正试图实现在我的一个项目中的标签导航行式图标和标签。我可以设置图标和标签根据默认设置,但我希望图标在左侧和标签在右侧,而不是作为图标在顶部和标签在底部。
这是我的代码:
export const InnerTab = TabNavigator({
Map: {
screen: MapStack,
navigationOptions: {
tabBarLabel: 'Map',
tabBarIcon: (
<Image source={require('../logos/map.png')}
style={[styles.innerTabIcon, {color: '#ffffff'}]}
/>
)
},
},
List: {
screen: ListStack,
navigationOptions: {
tabBarLabel: 'List',
tabBarIcon: (
<Image source={require('../logos/list.png')}
style={[styles.innerTabIcon, {color: '#ffffff'}]}
/>
)
},
},
},
{
tabBarPosition: 'top',
animationEnabled: false,
swipeEnabled:false,
lazy:true,
tabBarOptions: {
upperCaseLabel: false,
showIcon: true,
activeBackgroundColor:'#2394C7',
inactiveBackgroundColor:'#77909F',
tabStyle:{
marginTop:(Platform.OS === 'ios') ? 0 : 0,
height : 40,
},
indicatorStyle: {
backgroundColor : '#2394C7',
height :(Platform.OS === 'ios') ? 53 : 63,
},
style :{
backgroundColor:'#77909F'
},
labelStyle: {
fontSize: 18,
fontWeight:'bold',
marginTop: 0,
color :'#ffffff'
},
},
});
我已经看过了文件,但没有找到。但尝试了几种方法,但没有工作。
有什么办法可以实现它吗?
3条答案
按热度按时间exdqitrt1#
您可以将
flexDirection:'row'
添加到tabBarOptions
下的tabStyle
。参考:
https://reactnavigation.org/docs/navigators/tab
ars1skjm2#
tabBarOptions
下的labelPosition
似乎就是为此设计的。参考:
https://reactnavigation.org/docs/bottom-tab-navigator#labelposition
axkjgtzd3#
在图标的图像样式中使用
alignself
。