weex IOS box-shadow始终是方形

IOS下圆形头像框加阴影始终是方形,没有在image便签下加
clipboard.png
头像框代码如下:

<div class="user-avatar-box"></div>

.user-avatar-box {
  width: 160px;
  height: 160px;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 80px;
  box-shadow: 0 0 5px rgba(211, 210, 210, 0.50);
}
阅读 4.4k