react-navigation 自定义返回按钮
2017-08-15 本文已影响933人
乘务员
需求在相应的页面实现自定义goback功能,支持回调方法。
...
headerLeft: (
<HeaderBackButton
title="信息"//返回按钮的标题
tintColor='white'//返回按钮的颜色
onPress={() => navigation.state.params.handleSave()}
/>
),
componentDidMount() {
this.props.navigation.setParams({ handleSave: this._leftClick.bind(this) })
}
_leftClick=()=>{
this.props.navigation.state.params.return_data()
this.props.navigation.goBack()
}