本机基本选项卡在加载时不显示选项卡内容

时间:2019-05-09 13:39:44

标签: react-native tabs native-base

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>
}

我应该做些什么改变才能使其在负载下呈现。

0 个答案:

没有答案