gpt4 book ai didi

javascript - subview 覆盖父 View 的边界。 [ react native ]

转载 作者:搜寻专家 更新时间:2023-11-01 05:03:18 24 4
gpt4 key购买 nike

我正在尝试在 react-native 中执行以下操作。我在父 View 中设置了 borderRadius。但是 child 正在压倒一切。所以在最终 View 中,borderRadius是不可见的

export default class FlexDimensionsBasics extends Component {
render() {
return (
// Try removing the `flex: 1` on the parent View.
// The parent will not have dimensions, so the children can't expand.
// What if you add `height: 300` instead of `flex: 1`?
<View style={{flex: 1, borderRadius:30, backgroundColor:'red'}}>
<View style={{flexGrow: 10, backgroundColor: 'powderblue'}} />
<View style={{flexGrow: 20, backgroundColor: 'skyblue'}} />
<View style={{flexGrow: 30, backgroundColor: 'steelblue'}} />
</View>
);
}
}

enter image description here

有什么我想补充的吗?

最佳答案

overflow: "hidden" 添加到您的父级样式

关于javascript - subview 覆盖父 View 的边界。 [ react native ],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52081927/

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