本机基本高度含量

时间:2018-06-25 06:05:45

标签: react-native native-base

我有用于渲染的代码:

    <ScrollView>
        <Tabs
          style={styles.tabs}
          tabBarUnderlineStyle={styles.tabs_underline}
          initialPage={0}
        >
          <Tab
            tabStyle={styles.tab}
            textStyle={styles.tab_text}
            activeTabStyle={styles.tab}
            activeTextStyle={styles.tab_text}
            heading="First tab"
          >
            <Content style={styles.content_login}>
            ...
            </Content>
          </Tab>
          <Tab
            tabStyle={styles.tab}
            textStyle={styles.tab_text}
            activeTabStyle={styles.tab}
            activeTextStyle={styles.tab_text}
            heading="Second tab"
          >
            <Content style={styles.content_login}>
            ...
            </Content>
          </Tab>
        </Tabs>
    </ScrollView>

我希望内容的高度正常。屏幕截图中的问题,例如:

首先: enter image description here

稍后: enter image description here

和: enter image description here

如何解决?

0 个答案:

没有答案