Showing
1 changed file
with
3 additions
and
3 deletions
| @@ -107,7 +107,7 @@ export struct PlayerTitleView { | @@ -107,7 +107,7 @@ export struct PlayerTitleView { | ||
| 107 | Row() { | 107 | Row() { |
| 108 | Text("@" + this.getName()) | 108 | Text("@" + this.getName()) |
| 109 | .fontColor(Color.White) | 109 | .fontColor(Color.White) |
| 110 | - .fontSize(17) | 110 | + .fontSize(14) |
| 111 | .maxLines(1) | 111 | .maxLines(1) |
| 112 | .lineHeight(25) | 112 | .lineHeight(25) |
| 113 | .fontWeight(600) | 113 | .fontWeight(600) |
| @@ -115,7 +115,7 @@ export struct PlayerTitleView { | @@ -115,7 +115,7 @@ export struct PlayerTitleView { | ||
| 115 | .textOverflow({ overflow: TextOverflow.Ellipsis }) | 115 | .textOverflow({ overflow: TextOverflow.Ellipsis }) |
| 116 | 116 | ||
| 117 | if (this.getIcon()) { | 117 | if (this.getIcon()) { |
| 118 | - Image(this.getIcon()).height(13).margin({ left: 4 }) | 118 | + Image(this.getIcon()).height(11).margin({ left: 4, top: 3 }) |
| 119 | } | 119 | } |
| 120 | }.margin({ bottom: 8 }) | 120 | }.margin({ bottom: 8 }) |
| 121 | 121 | ||
| @@ -126,7 +126,7 @@ export struct PlayerTitleView { | @@ -126,7 +126,7 @@ export struct PlayerTitleView { | ||
| 126 | .fontSize(15) | 126 | .fontSize(15) |
| 127 | .maxLines(3) | 127 | .maxLines(3) |
| 128 | .lineHeight(20) | 128 | .lineHeight(20) |
| 129 | - .fontWeight(400) | 129 | + .fontWeight(600) |
| 130 | .fontFamily('PingFang SC-Regular') | 130 | .fontFamily('PingFang SC-Regular') |
| 131 | .textOverflow({ overflow: TextOverflow.Ellipsis }) | 131 | .textOverflow({ overflow: TextOverflow.Ellipsis }) |
| 132 | .margin({ bottom: 8 }) | 132 | .margin({ bottom: 8 }) |
-
Please register or login to post a comment