React Native中clipsToBounds = true
的替代方法是什么?我的子视图超出了父视图的范围。在使用swift的iOS中,我可以使用clipsToBounds = true
答案 0 :(得分:1)
您必须使用视图的style
属性,并将overflow
设置为hidden
。像这样:
<View style={{ overflow: ‘hidden’ }}>
{/* These views won’t be presented out of the view */}
</View>