款式在陣營導航使用navigationOptions內標題對象的標題對象:
static navigationOptions = {
header: {
titleStyle: {
/* this only styles the title/text (font, color etc.) */
},
style: {
/* this will style the header, but does NOT change the text */
},
tintColor: {
/* this will color your back and forward arrows or left and right icons */
}
}
}
對於造型的backgroundColor
,你只需要設置你的應用程序中的backgroundColor
否則你會得到默認的顏色。
更新!隨着2017年5月beta9的navigationOptions現在是平
您可以閱讀有關重大更改的位置:https://github.com/react-community/react-navigation/releases/tag/v1.0.0-beta.9
你需要從標題對象中刪除的對象鍵。另外,請注意它們已被重命名。
static navigationOptions = {
title: 'some string title',
headerTitleStyle: {
/* */
},
headerStyle: {
/* */
},
headerTintColor: {
/* */
},
}