如何将自定义组件添加到createMaterialTopTabNavigator选项卡栏

时间:2019-01-28 19:50:37

标签: javascript react-native react-navigation

我正在使用createMaterialTopTabNavigator中的react-navigation,并尝试通过在其顶部添加一些组件来自定义标签栏。

如您在此处的指南中所见:

https://reactnavigation.org/docs/en/material-top-tab-navigator.html#docsNav

有一个名为tabBarComponent的选项,可以传递该选项来创建自己的标签栏。但是,它会完全覆盖我不想要的选项卡栏。

我想在选项卡栏的顶部添加一个自定义组件,然后将默认选项卡及其标签置于其下。

请问有人可以向我展示如何向标签栏添加组件的示例吗?

例如,下面的代码用My Custom Component文本替换了标签,但是我怎么能同时拥有它们呢? (自定义组件和标签)

const myNavigation = createMaterialTopTabNavigator({
  firstTab: FirstTabScreen,
  secondTab: SecondTabScreen,
  thirdTab: ThirdTabScreen,
},
{
  tabBarComponent: props => (
    <View><Text>My Custom Component</Text></View>
  )
});

3 个答案:

答案 0 :(得分:1)

创建自定义标签栏组件并不难,下面是我为正在处理的项目创建的自定义标签栏的示例。

但是实际上并没有那么多,您的标签栏组件会收到一个导航道具,其中包含您在createMaterialTopTabNavigator中设置的不同路线。因此,您只需遍历这些路线并为每个路线显示一个标签栏项。

CustomTabBar.jsx

export default class CustomTabBar extends React.Component {

  render() {

    const {navigation} = this.props;    
    const routes = navigation.state.routes;

    return (
      <SafeAreaView style={{backgroundColor: 'blue'}}>
        <View style={styles.container}>
          {routes.map((route, index) => {
            return (
              <View style={styles.tabBarItem}>
                <CustomTabBarIcon
                  key={route.key}
                  routeName=route.routeName
                  onPress={() => this.navigationHandler(index)}
                  focused={navigation.state.index === index}
                  index={index}
                />
          </View>
            );
          }
        </View>
      </SafeAreaView>
    );
  }

  navigationHandler = (routeName) => {
    this.props.navigation.navigate(routeName);
  }
}

const styles = StyleSheet.create({

  container: {
    flexDirection: 'row',
    alignContent: 'center',
    height: 56,
    width: '100%',
    paddingHorizontal: 16,
    backgroundColor: 'blue',
  },
  tabBarItem: {
    flex: 1,
    alignItems: 'center'
  }
});

CustomTabBarItem.jsx

class CustomTabBarIcon extends React.PureComponent {

  render() {

    const {index, focused, routeName} = this.props;
    let icon = '';

    switch (index) {
      case 0: 
        icon = 'a';
        break;

      case 1:
        icon : 'b';
        break;

      case 2:
        icon = 'c';
        break;

      default: 
        iconName = 'a';
    }

    return (
      <TouchableWithoutFeedback
        onPress={() => this.onSelect(routeName)}
      >
        <View style={[styles.container, focused ? styles.active : styles.inactive]}> 
          <View style={styles.icon}>
            <Icon name={icon} color='white' size={24}/>
          </View>
          <Text style={styles.textStyle}>{routeName}</Text>
        </View>
      </TouchableWithoutFeedback>
    );
  }

  onSelect = (routeName) => {    
    this.props.onPress(routeName);
  }
}

const styles = StyleSheet.create({

  container: {
    flex: 1,
    alignItems: 'center'
  },
  active: {
    borderTopWidth: 3,
    borderColor: 'white'
  },
  inactive: {
    borderTopWidth: 3,
    borderColor: 'blue'  
  },
  textStyle: {
    color: 'white',
    fontSize: 13
  }
});

答案 1 :(得分:1)

一种非常简单的方法是使用来自react的Fragment。解决了这个问题。

import React, {Fragment} from 'react';

您的组件返回可能看起来像这样

return (
        <Fragment>
            <MyCustomHeader/>
            <MaterialTopTabBar/>
        </Fragment>

    )

答案 2 :(得分:0)

您可以将自己的自定义组件添加到现有的顶部标签栏中,如下所示:

import { createMaterialTopTabNavigator, MaterialTopTabBar } from "react-navigation";

tabBarComponent: props => <SafeAreaView>
  <MyCustomHeader title='test' />
  <MaterialTopTabBar {...props} />
</SafeAreaView>