gpt4 book ai didi

android - 即使更新到 RN 0.58.4,React native 溢出也无法在 android 中工作

转载 作者:行者123 更新时间:2023-12-03 13:41:59 30 4
gpt4 key购买 nike

根据this RN 发布,现在可以使用 overflow:'visible'在安卓中。但仍然 React Native Android 裁剪了它的 Children View 。考虑下面的代码

import React, { Component } from 'react';
import { Platform, StyleSheet, Text, View, ScrollView,FlatList } from 'react-native';


type Props = {};
export default class App extends Component<Props> {
objectValues = {
one: 'one',
two: 'one',
three: 'one',
four: 'one',
five: 'one',
six: 'one',
seven: 'one',
eight: 'one',
nine: 'one',
ten: 'one',
eleven: 'one'
}
listData=[1,2,3,4,5,6,7]
renderBody(item, index) {
return (
<View style={styles.innerContainer}>
<Text>{item}</Text>
<View style={styles.overflowStyle} />
</View>
)
}
_renderList() {

return (
<FlatList
bounces={false}
style={[{ overflow: "visible" },{ zIndex:1},{ marginLeft:50 }, { marginRight: 50 },{ backgroundColor:'black'}]}
numColumns={3}
data={this.listData}
keyExtractor={(item, index) => index}
renderItem={({ item, index }) => this.renderBody(item, index)}
/>
);
}
render() {
return (
<View style={styles.container}>
<ScrollView style={styles.scrollStyle}>
<View>
{Object.keys(this.objectValues)
.map((key, index) => {
console.log(key)
return this._renderList()
})}
</View>
</ScrollView>
</View>
);
}
}

const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#F5FCFF',

},

innerContainer: {
marginRight: 10,
overflow:'visible',
marginTop:10,
height: 100,
flex:1,
backgroundColor: 'green',
zIndex:1
},
overflowStyle: {
height: 20,
width: 30,
backgroundColor: 'red',
position: 'absolute',
left: -20,
top: 50,
zIndex:10

},
scrollStyle:{
overflow:'visible',
zIndex:1,
backgroundColor:'white'
}
});
代码像这样在iOS中运行
enter image description here
但在 Android 中,它的节目是这样的。父 View 剪裁其 subview 。在我的情况下, parent 是 ScrollView enter image description here
所以我的问题是,他们是否解决了这个问题?或者我的代码有什么问题吗?请帮忙
展会链接:: https://snack.expo.io/ryZwe-mHN

最佳答案

我也面临这个问题,我能够通过为父 View 提供透明背景颜色来解决。

关于android - 即使更新到 RN 0.58.4,React native 溢出也无法在 android 中工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54693030/

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