我试图在react-native中执行以下操作。 我在父视图中设置了borderRadius。但是孩子对此很无礼。因此,在最终视图中,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>
);
}
}
我想补充什么吗?
答案 0 :(得分:8)
将overflow: "hidden"
添加到您的父级样式