我试图仅在Android中使用" 反应导航"来更改标签栏的背景颜色。有可能吗?
我使用下面的tabBarOptions,但它改变了iOS和Android中的背景颜色,但我的要求是仅在Android中更改颜色,它应该仍然是iOS中的默认颜色,
{tabBarOptions:{ 风格:{ backgroundColor:'#2D61A9',}}}
提前致谢。
答案 0 :(得分:0)
您可以使用Platform
see here来设置特定于平台的操作系统。
以下 应该。
{
tabBarOptions : {
style: {
Platform.select({
android: {
backgroundColor: '#2D61A9',
},
}
}
}
答案 1 :(得分:0)
使用平台进行简单的ios检查
import { Platform } from 'react-native';
const style = Platform.OS === 'ios' ? {} : {backgroundColor: '#2D61A9'}
{ tabBarOptions: { style } }