我正在使用自定义组件来响应本机导航的导航栏,这将正确呈现,这是我的基本代码:
componentDidMount()
{
this.props.navigator.setStyle({
navBarCustomView: 'my.app.DetailsNavbar',
navBarComponentAlignment: 'fill',
navBarCustomViewInitialProps: {
navigator: this.props.navigator,
authorImage: this.props.post.authorImage,
authorName: this.props.post.authorName
},
});
}
这给我创造了一个类似纳伯的视图:
我想缩小后退按钮和自定义组件之间的距离,但是我找不到任何直接的方法来做到这一点。
有没有什么办法可以缩小这种差距?
谢谢!