垂直Scrollview适用于React Native中的所有设备

时间:2019-01-08 07:40:52

标签: iphone react-native ipad scrollview vertical-scrolling

我的本​​机应用程序中有登录视图。 在iPhone 5s之类的小型设备中,内容无法显示出来。因此,我添加了scrollview来进行滚动。

但是,iPhone 6和所有大型设备(甚至是iPad)中都将使用滚动条。

我的代码

  

login.js

      <ScrollView style={{ flex: 1, flexDirection: 'column' }} contentContainerStyle={LoginStyles.scollView}>
        <View style={LoginStyles.logoContainter}>

//Some more code


        </View>
      </ScrollView>
  

style.js

 scollView: {
    flexGrow: 1,
    justifyContent: 'space-between',
  },

如我在上述大型设备中所述,如何控制它?

0 个答案:

没有答案