标签: react-native react-navigation
如何在React导航的导航选项中实现条件?
static navigationOptions = { headerTitle: this.props.moneyContext === 'Send' ? 'Send money' : 'Receive money', };
moneyContext取决于打开哪个屏幕并从存储中获取数据。
谢谢!
答案 0 :(得分:1)
您可以尝试使用setParams:
navigation.setParams({ param: value })
有关详细信息,请参见documentation on headers。