1
import ScrollableTabView from 'react-native-scrollable-tab-view';
    
    <ScrollView style={styles.container} showsVerticalScrollIndicator={false}>

<ScrollableTabView
                style={{ flexGrow: 1, marginTop: mt ? mt : 0 }}
                tabBarActiveTextColor="#53ac49"
                renderTabBar={(i) =>
                    <View style={{ flexDirection: 'row' }}>
                        {i.tabs.map((item, index) => {
                            return <View style={{ flexDirection: 'row' }}>
                                <TabTextStyle
                                    text={item.label}
                                    index={index}
                                    numberofTabs={tabs.length}
                                    onPress={(item_index) => i.goToPage(item_index)}
                                    selectedTab={i.activeTab == index ? true : false} />
                            </View>
                        })}
                    </View>
                }>
                {tabs.map(item => {
                    return item
                })}
            </ScrollableTabView>

我正在使用它,它在 IOS 中运行良好,但在 android 中没有显示数据。我能够找到它发生的原因,因此任何人都可以为此提供详细信息。不在滚动视图中工作。但我需要滚动视图,那么解决方案是什么。请告诉我。

4

0 回答 0