React Native:如何在tabBar中为android添加图标

时间:2017-03-19 19:36:41

标签: android react-native icons tabview

我想在 tabView 中为android添加图标。我的代码看起来:

<ScrollableTabView>
            <View style={styles.container} tabLabel='Menu Button'>
            </View>
            <View style={styles.container} tabLabel='My App'>
            </View>         
            <View style={styles.container} tabLabel='Settings'>
            </View>  
</ScrollableTabView>

我想要图标而不是菜单按钮设置。 我怎样才能使用图标而不是tabLabel ??

1 个答案:

答案 0 :(得分:1)

我假设您正在使用: https://github.com/skv-headless/react-native-scrollable-tab-view

此解决方案应该有效:

<ScrollableTabView>
    <View style={styles.container} tabLabel='android-menu'>
    </View>
    <View style={styles.container} tabLabel='My App'>
    </View>         
    <View style={styles.container} tabLabel='android-settings'>
    </View>  
</ScrollableTabView>

此处提供完整的图标列表:

https://github.com/skv-headless/react-native-scrollable-tab-view/blob/ee5d99950fad9c4c1129d029d7bfaea130df72d1/examples/FacebookTabsExample/android/app/src/main/assets/ion.json

编辑1:

此示例演示了在tabLabel而不是text上使用的图标: https://github.com/skv-headless/react-native-scrollable-tab-view/tree/master/examples/FacebookTabsExample