Showing
3 changed files
with
3 additions
and
3 deletions
| @@ -441,7 +441,7 @@ export struct PaperSingleColumn999CardView { | @@ -441,7 +441,7 @@ export struct PaperSingleColumn999CardView { | ||
| 441 | Stack({ alignContent: Alignment.BottomEnd }) { | 441 | Stack({ alignContent: Alignment.BottomEnd }) { |
| 442 | Image(this.item?.coverUrl) | 442 | Image(this.item?.coverUrl) |
| 443 | .borderRadius(5) | 443 | .borderRadius(5) |
| 444 | - .objectFit(ImageFit.Fill) | 444 | + .objectFit(ImageFit.Cover) |
| 445 | .aspectRatio(16 / 10) ///图片设计比例 | 445 | .aspectRatio(16 / 10) ///图片设计比例 |
| 446 | .padding({ top: 10 }) | 446 | .padding({ top: 10 }) |
| 447 | //视频 | 447 | //视频 |
| @@ -168,8 +168,8 @@ struct Index { | @@ -168,8 +168,8 @@ struct Index { | ||
| 168 | })) | 168 | })) |
| 169 | Image($r("app.media.icon_audio_close")) | 169 | Image($r("app.media.icon_audio_close")) |
| 170 | .objectFit(ImageFit.Contain) | 170 | .objectFit(ImageFit.Contain) |
| 171 | - .width(24) | ||
| 172 | - .height(24) | 171 | + .width(32) |
| 172 | + .height(32) | ||
| 173 | .gesture( | 173 | .gesture( |
| 174 | TapGesture() | 174 | TapGesture() |
| 175 | .onAction((event: GestureEvent) => { | 175 | .onAction((event: GestureEvent) => { |
-
Please register or login to post a comment