gpt4 book ai didi

android - ScrollView 不适用于 android 像素模拟器,但它适用于 ios 设备和模拟器

转载 作者:行者123 更新时间:2023-11-27 23:00:25 25 4
gpt4 key购买 nike

    return (
<View style={{
flexGrow: 1,
flex: 1,
height: Dimensions.get('window').height,
flexDirection: 'column',
}}>
<ScrollView horizontal={false} contentContainerStyle={{flexGrow: 1}} >

{<View style={{
flex: 1
}}>
<LocationPicker navigation={this.props.navigation} onLocationPicked={this.locationPickedHandler}/>
</View>}
</ScrollView>
</View>);```

我试过设置 height, flex: 1, flexGrow: 1 除了运气不好

谁能帮我解决这个问题?

最佳答案

React native ScrollView 有一个 horizo​​ntal 属性,当设置为 true 时,它​​的子元素排成一行。

   return (
<View style={{
flex: 1,
height: Dimensions.get('window').height,
flexDirection: 'column',
}}>
<ScrollView horizontal={false} contentContainerStyle={{flexGrow: 1}} >

<View style={{
flex: 1
}}>
<LocationPicker navigation={this.props.navigation} onLocationPicked={this.locationPickedHandler}/>
</View>
</ScrollView>
</View>);

关于android - ScrollView 不适用于 android 像素模拟器,但它适用于 ios 设备和模拟器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59021206/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com