Native Base可滚动选项卡在屏幕加载时不显示选项卡内容,但滚动时我们可以看到它。
<Tab
heading={`Day ${i}`}
tabStyle={{
backgroundColor: '#fff',
}}
textStyle={{ color: '#0b254f', fontWeight: '600' }}
activeTabStyle={{
backgroundColor: '#f1f1f1',
}}
activeTextStyle={{ color: '#0b254f', fontWeight: '600' }}
>
{this.renderTabContent()}
</Tab>
renderTabContent(){
return <Text>Tab Content goes here </Text>
}
我应该做些什么改变才能使其在负载下呈现。