我试图添加一个边框到一个React导航标题,但没有为我工作。
请注意,我使用的是版本6。
以下是我迄今为止尝试过的选项:
options={{
headerShadowVisible: true,
shadowOffset: { height: 0, width: 0 },
shadowColor: 'red',
borderBottomColor: 'red',
borderBottomWidth: 4,
}}
以上选项对我都不起作用。
我查过了,但什么也没找到。
2条答案
按热度按时间jum4pzuy1#
本机堆栈没有选项,您需要使用堆栈导航器
https://reactnavigation.org/docs/stack-navigator/#options
您需要将样式发送到此参数
headerStyle
,而不是选项的根6rqinv9w2#
只需添加此内容即可在nacigator v6中添加边框:)
这就是我的样子