In my React Native project, I created a customized Image swiper using ScrollView. However, one issue I encountered is that the rounded corners of the images look distorted when moving. Is there a solution to round the corners of the ScrollView? Here are the styles applied to my ScrollView:
style={{
flexDirection: 'row', alignSelf: 'center',
width: this.state.imageWidth,
borderRadius: 20,
}}