5

我正在使用 react-native-tab-view ,我可以将文本放在选项卡上,但我想要图标。GitHub上有一些答案,但不清楚。如果你知道什么就完美了!

这是我正在谈论的标签视图

4

3 回答 3

8

1.获取导入的图标库:-

import Icon from 'react-native-vector-icons/AwesomeFont'

2.使用props创建一个根据路由渲染图标的方法:-

const getTabBarIcon = (props) => {

    const {route} = props

      if (route.key === 'Search') {

       return <Icon name='search' size={30} color={'red'}/>

      } else {

       return <Icon name='circle' size={30} color={'red'}/>

      }
}

3.使用已渲染的 TabBar 属性回调 getTabBarIcon 来渲染 TabView:-

export default class App extends React.Component {

    state = {
        index: 0,
        routes: [
            {key: 'Home', title: 'Hello'},
            {key: 'Search', title: 'Second'}
        ],
    }

    render() {
        return (
            <TabView
                navigationState={this.state}
                renderScene={SceneMap({
                    Home: FirstRoute,
                    Search: SearchScreen,
                })}
                onIndexChange={index => this.setState({index})}
                initialLayout={{height: 100, width: Dimensions.get('window').width}}
                renderTabBar={props =>
                    <TabBar
                        {...props}
                        indicatorStyle={{backgroundColor: 'red'}}
                        renderIcon={
                            props => getTabBarIcon(props)
                        }
                        tabStyle={styles.bubble}
                        labelStyle={styles.noLabel}
                    />
                }
                tabBarPosition={'bottom'}
            />
        );
    }
}

4.你可以用任何东西来设置 TabBar 的样式(这里的标签是隐藏的,只使用图标选项卡)

const styles = StyleSheet.create({
    scene: {
        flex: 1,
    },
    noLabel: {
        display: 'none',
        height: 0
    },
    bubble: {
        backgroundColor: 'lime',
        paddingHorizontal: 18,
        paddingVertical: 12,
        borderRadius: 10
    },
})

于 2019-01-13T16:35:21.377 回答
1

您必须覆盖 renderHeader 方法并在 TabBar 中定义您自己的渲染标签方法:

  renderHeader = (props) => (
      <TabBar
        style={styles.tabBar}
        {...props}
        renderLabel={({ route, focused }) => (
          <View style={styles.tabBarTitleContainer}>
               /* HERE ADD IMAGE / ICON */
          </View>
        )}
        renderIndicator={this.renderIndicator}
      />
  );
于 2018-07-06T13:49:52.487 回答
0

我有同样的问题。我通过创建一个“_renderTabBar”函数并将其作为道具传递给 TabView 组件的 renderTabBar 方法来解决它,在这个函数中我将组件“图像”作为我的图标,我希望它有所帮助。

打印: 在此处输入图像描述

_renderTabBar = props => {
const inputRange = props.navigationState.routes.map((x, i) => i);

return (
  <View style={styles.tabBar}>
    {props.navigationState.routes.map((route, i) => {
      const color = props.position.interpolate({
        inputRange,
        outputRange: inputRange.map(
          inputIndex => (inputIndex === i ? 'red' : 'cyan')
        ),
      });
        return (
        <TouchableOpacity
          style={[styles.tabItem, {backgroundColor: '#FFF' }]}
          onPress={() => this.setState({ index: i })}>
          <Image
      style={styles.iconTab}
      source={{uri: 'https://www.gstatic.com/images/branding/product/2x/google_plus_48dp.png'}}
    />
          <Animated.Text style={{ color }}>{route.title}</Animated.Text>

        </TouchableOpacity>

      );
    })}
  </View>
);

};

你在这里渲染

render() {
return (
  <TabView
    navigationState={this.state}
    renderScene={this._renderScene}
    renderTabBar={this._renderTabBar}
    onIndexChange={index => this.setState({ index })}
  />
);

代码完整:https ://snack.expo.io/@brunoaraujo/react-native-tab-view-custom-tabbar

于 2018-12-10T17:49:24.957 回答