react-native设置scrollView水平垂直居中

来源:互联网 发布:淘宝素材图片 编辑:程序博客网 时间:2024/06/05 15:50

react-native设置scrollView水平垂直居中

scrollView有一个contentContainerStyle属性

<ScrollView contentContainerStyle = {{flex:1}}>    <View style={flex: 1,        alignItems: 'center',        justifyContent: 'center'}>    </View></ScrollView>
原创粉丝点击