Showing
2 changed files
with
9 additions
and
2 deletions
| @@ -130,11 +130,15 @@ export struct PlayerFullScreenView { | @@ -130,11 +130,15 @@ export struct PlayerFullScreenView { | ||
| 130 | Column() { | 130 | Column() { |
| 131 | Text() { | 131 | Text() { |
| 132 | Span(this.upProVal) | 132 | Span(this.upProVal) |
| 133 | + .fontColor(Color.White) | ||
| 133 | Span(' / ') | 134 | Span(' / ') |
| 135 | + .fontColor(Color.White) | ||
| 134 | Span(this.duration) | 136 | Span(this.duration) |
| 137 | + .fontColor('#888888') | ||
| 138 | + | ||
| 135 | } | 139 | } |
| 136 | .fontSize(24) | 140 | .fontSize(24) |
| 137 | - .fontColor(Color.White) | 141 | + |
| 138 | .fontWeight(600) | 142 | .fontWeight(600) |
| 139 | .margin({ bottom: 30 }) | 143 | .margin({ bottom: 30 }) |
| 140 | .visibility(this.isDragging ? Visibility.Visible : Visibility.None) | 144 | .visibility(this.isDragging ? Visibility.Visible : Visibility.None) |
| @@ -77,11 +77,14 @@ export struct PlayerProgressView { | @@ -77,11 +77,14 @@ export struct PlayerProgressView { | ||
| 77 | Column() { | 77 | Column() { |
| 78 | Text() { | 78 | Text() { |
| 79 | Span(DateTimeUtils.secondToTime(Math.floor(this.progressVal / 100 * this.videoDuration))) | 79 | Span(DateTimeUtils.secondToTime(Math.floor(this.progressVal / 100 * this.videoDuration))) |
| 80 | + .fontColor(Color.White) | ||
| 80 | Span(' / ') | 81 | Span(' / ') |
| 82 | + .fontColor(Color.White) | ||
| 81 | Span(DateTimeUtils.secondToTime(this.videoDuration)) | 83 | Span(DateTimeUtils.secondToTime(this.videoDuration)) |
| 84 | + .fontColor('#888888') | ||
| 82 | } | 85 | } |
| 83 | .fontSize(24) | 86 | .fontSize(24) |
| 84 | - .fontColor(Color.White) | 87 | + |
| 85 | .fontWeight(600) | 88 | .fontWeight(600) |
| 86 | .margin({ bottom: 30 }) | 89 | .margin({ bottom: 30 }) |
| 87 | .visibility(this.isDragging ? Visibility.Visible : Visibility.None) | 90 | .visibility(this.isDragging ? Visibility.Visible : Visibility.None) |
-
Please register or login to post a comment