首页 > 解决方案 > ScrollView 圆角

问题描述

我在 React Native 中使用 ScrollView 制作了一个自定义的 Image swiper,但是当带有圆角的图像移动时它看起来很糟糕。有什么办法可以使 ScrollView 的角变圆?这些是我的 ScrollView 样式:

style={{
     flexDirection: 'row', alignSelf: 'center',
     width: this.state.imageWidth,
     borderRadius: 20,
}}

标签: javascriptandroidiosreact-native

解决方案


ScrollView还继承了样式,ViewStyles因此您可以传递borderRadius: 20给它。


推荐阅读