我的本机应用程序中有登录视图。 在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',
},
如我在上述大型设备中所述,如何控制它?