React Native中的clipsToBounds

时间:2019-03-21 14:13:26

标签: react-native

React Native中clipsToBounds = true的替代方法是什么?我的子视图超出了父视图的范围。在使用swift的iOS中,我可以使用clipsToBounds = true

解决它

1 个答案:

答案 0 :(得分:1)

您必须使用视图的style属性,并将overflow设置为hidden。像这样:

<View style={{ overflow: ‘hidden’ }}>
   {/* These views won’t be presented out of the view */}
</View>