我想在 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 ??
答案 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>
此处提供完整的图标列表:
编辑1:
此示例演示了在tabLabel而不是text上使用的图标: https://github.com/skv-headless/react-native-scrollable-tab-view/tree/master/examples/FacebookTabsExample