我只想在 TabBar 中显示纯图标图像
但是在iOS中,它是这样显示的。
但原始图像在下面。
我认为它在 IOS 中是基本的。我想删除颜色或设置为透明。
有可能吗?
我尝试更改 tabsStyle 以进行下面的一些测试。
tabsStyle: {
tabBarBackgroundColor: '#000',
tabBarButtonColor: '#fff',
tabBarSelectedButtonColor: '#fff',
}
左图正常,右图很奇怪。
环境
react 原生:“0.55.2”
react-native-navigation: "^1.1.438"
平台:iOS
Best Answer-推荐答案 strong>
您可以使用 tabStyle 。例如
tabsStyle: {
tabBarBackgroundColor: '#fff',
tabBarButtonColor: '#fff',
tabBarSelectedButtonColor: '#fff',
}
关于ios - 如何更改标签栏中图标的颜色? ( react 原生导航),我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/50054147/
|