如何在ios [React Native]中动态添加按钮到导航栏?

时间:2017-11-08 11:46:24

标签: react-native react-native-router-flux

我正在使用Router flux库,基本上我只想在会话存在的情况下在导航栏上显示后退按钮,否则我需要隐藏后退按钮。有可能吗?

这是我的场景

    <Scene
      component={Devices}
      hideNavBar={true}
      key='devices'
      title='Devices'
      headerTintColor="#ffffff" />

我的组件中有这样的禁用后退按钮。

export default class Devices extends Component {

  static navigationOptions = {
    headerLeft: null
  };
}

1 个答案:

答案 0 :(得分:0)

这解决了它

//If session does not exists
Actions.refresh({key: 'devices', renderLeftButton:null});