我想在TabBar中显示纯图标图像
但在iOS中,它显示如下。
但原始图片在下方。
我认为这是IOS的基础。我想删除颜色或设置为透明。 有可能吗?
我尝试在下面的某些测试中更改tabsStyle。
tabsStyle: {
tabBarBackgroundColor: '#000',
tabBarButtonColor: '#fff',
tabBarSelectedButtonColor: '#fff',
}
左图是工作但右图很奇怪。
React Native:" 0.55.2"
react-native-navigation:" ^ 1.1.438"
平台:iOS
答案 0 :(得分:1)
您可以使用tabStyle
。例如
tabsStyle: {
tabBarBackgroundColor: '#fff',
tabBarButtonColor: '#fff',
tabBarSelectedButtonColor: '#fff',
}
答案 1 :(得分:1)
已解决。
我现在正在使用本机导航“ v2”。
这正常工作。