admin管理员组文章数量:1295303
Is there a way to set the color of the headerBackTitle
in the Stacknavigator
?
navigationOptions: ({ navigation }) => ({
...
headerBackTitle: "Back",
}),
...
Depending on the background color the header has, the headerBackTitle
is not readable.
Is there a way to set the color of the headerBackTitle
in the Stacknavigator
?
navigationOptions: ({ navigation }) => ({
...
headerBackTitle: "Back",
}),
...
Depending on the background color the header has, the headerBackTitle
is not readable.
2 Answers
Reset to default 7I know this question was a long time ago but anyways, headerBackTitleStyle
will change only the color, better use headerTintColor: '#FF0000'
to change text and icon
You can use headerBackTitleStyle
to style your back button.
navigationOptions: ({ navigation }) => ({
...
headerBackTitle: "Back",
headerBackTitleStyle: {
color: 'pink'
}
}),
...
本文标签: javascriptColor of headerBackTitle react navigationStack Overflow
版权声明:本文标题:javascript - Color of headerBackTitle react navigation - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1741617668a2388621.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论