在选项卡中添加填充React Native

时间:2018-07-10 00:24:08

标签: reactjs react-native

是否可以在我的标签页中添加填充?这是我使用h ttps://github.com/react-native-community/react-native-tab-view

的插件

我阅读了文档和项目中的问题,以查看是否找到了运气。

2 个答案:

答案 0 :(得分:1)

样式/自定义功能在该插件中可用。可以通过以下两种方法进行操作:
1]如果要向整个TabBar添加填充,则应按以下步骤进行操作:

<TabBar
  {...props}
  indicatorStyle={styles.indicator}
  style={styles.tabbarStyle}
/>

2]如果要在选项卡中添加填充,请按照以下步骤进行操作:

<TabBar
  {...props}
  indicatorStyle={styles.indicator}
  tabStyle={styles.tabsStyle}
/>

您需要相应地添加“ tabbarStyle”或“ tabsStyle”。希望对您有帮助。

答案 1 :(得分:-1)

我不知道您正在使用的插件,但是您尝试过这种技巧吗?

render() {
    const style = {
        padding : '3em',
    }
    return (
        <MyComponent style={style}>
            ...
        </MyComponent>
    );
}