react native 中设置Image/ImageBackground圆角无效的解决方法

通常我们会设置style:

style={
   
   { borderRadius: 15 }}

在安卓环境下,发现并没有生效,设置属性即可解决

imageStyle={
   
   { borderRadius: 20 }}

完整示例:

<Image style={
   
   { width: 40, height: 40, borderRadius: 20 }} imageStyle={
   
   {borderRadius:20}} />
 
<ImageBackground style={
   
   { width: 40, height: 40, borderRadius: 20 }} imageStyle={
   
   { borderRadius: 20 }} />