解决它
react Native中clipsToBounds = true
的替代方案是什么?我的子视图超出了父视图的范围。在使用Swift的iOS中,我将使用clipsToBounds = true
您必须使用视图的style
属性,并将overflow
设置为hidden
。这样的东西:
<View style={{ overflow: ‘hidden’ }}>
{/* These views won’t be presented out of the view */}
</View>