我已使用堆栈和标签导航器设置页眉和页脚。但页眉和页脚的背景颜色是灰色的。
如何更改页眉和页脚导航中的背景颜色?
答案 0 :(得分:1)
请尝试使用以下样式:
tabBarOptions: {
style: {
backgroundColor: 'white'
}
}
或在屏幕上添加以下代码:
static navigationOptions = (navigation) => {
return {
headerStyle: {
backgroundColor: 'white'
}
}
}