6

在我的 react-native 项目中,我使用了 DrawerNavigator,从中导航到 SwitchAccount 页面。在 SwitchAccount 页面中,我使用了 react-native-tabs 中的选项卡。下面是我使用的代码

    render() {
      return (
     <View style={[styles.container]}>
      // Here _renderTab function return component based on selectedService
      {this._renderTab(this.state.selectedService)} 
      <TabBarContainer
          selectedService={this.state.selectedService}
          onTabChange={this._switchService}
        />
     </View>
    ); 
  }

当我单击选项卡时,它会更改状态,然后我得到 _renderTab 函数返回的新组件。一切正常,但我想根据 _renderTab 函数返回的组件更改标题标题。我应该怎么办?有什么方法可以从构造函数更改标题标题?下面是我在 SwitchAccount 页面中的 navigationOptions 代码。在那里我想从构造函数中更改标题。

    static navigationOptions = {
    title:'Filter',
    drawerLabel: 'Switch Account',
    drawerIcon: ({ tintColor }) => (
      <Icon
        name='md-switch'
        size={40}
        color='black'
      />
    ),
  };
4

1 回答 1

6

一种方法是使用导航paramsnavigationOptions可以定义为一个函数(而不是一个对象),它接收一个包含navigation对象本身的对象作为它的键之一:

static navigationOptions = ({navigation}) => ({ /* ... */ })

这允许您通过从navigation对象中读取参数来动态设置标题:

static navigationOptions = ({navigation}) => ({
    title: navigation.getParam('title', 'DefaultTitle'),
    /* ... */
})

在其中一个组件中,您可以调用对象setParams上的函数navigation来设置标题:

handleChangeTab = (tab) => {
    /* Your tab switching logic goes here */

    this.props.navigation.setParams({
        title: getTitleForTab(tab)
    })
} 

请注意,组件必须已安装react-navigation才能访问navigation道具,否则您必须从其父级传递它或使用withNavigationHoC 包装组件并让它从那里接收道具。

也就是说,您是否考虑过使用Tab 导航

于 2018-06-19T19:36:28.993 回答