我正在使用Router flux库,基本上我只想在会话存在的情况下在导航栏上显示后退按钮,否则我需要隐藏后退按钮。有可能吗?
这是我的场景
<Scene
component={Devices}
hideNavBar={true}
key='devices'
title='Devices'
headerTintColor="#ffffff" />
我的组件中有这样的禁用后退按钮。
export default class Devices extends Component {
static navigationOptions = {
headerLeft: null
};
}
答案 0 :(得分:0)
这解决了它
//If session does not exists
Actions.refresh({key: 'devices', renderLeftButton:null});