|
|
@@ -7180,19 +7180,19 @@ export struct LocalMusic {
|
|
|
.textOverflow({ overflow: TextOverflow.MARQUEE }) //超长滚动
|
|
|
.maxLines(1)
|
|
|
.fontColor(Color.White)
|
|
|
- .fontWeight(500);
|
|
|
+ .fontWeight(FontWeight.Bolder);
|
|
|
Row() {
|
|
|
Text(this.currentSong?.artist)
|
|
|
.margin({ top: 2 })
|
|
|
.fontSize(13)
|
|
|
.textAlign(TextAlign.Start)
|
|
|
.maxLines(1)
|
|
|
+ .fontWeight(FontWeight.Bold)
|
|
|
.textOverflow({ overflow: TextOverflow.MARQUEE }) //超长滚动
|
|
|
.fontColor(Color.White)
|
|
|
}
|
|
|
.visibility(this.currentSong?.artist? Visibility.Visible:Visibility.None)
|
|
|
}
|
|
|
- .geometryTransition('name', { follow: true }) // 绑定标识符
|
|
|
.alignItems(HorizontalAlign.Center)
|
|
|
}
|
|
|
@Builder
|
|
|
@@ -7218,20 +7218,20 @@ export struct LocalMusic {
|
|
|
.textOverflow({ overflow: TextOverflow.MARQUEE }) //超长滚动
|
|
|
.maxLines(1)
|
|
|
.fontColor(Color.White)
|
|
|
- .fontWeight(500);
|
|
|
+ .fontWeight(FontWeight.Bolder);
|
|
|
Row() {
|
|
|
Text(this.currentSong?.artist)
|
|
|
.margin({ top: 2 })
|
|
|
.fontSize(13)
|
|
|
.textAlign(TextAlign.Start)
|
|
|
.maxLines(1)
|
|
|
+ .fontWeight(FontWeight.Bold)
|
|
|
.textOverflow({ overflow: TextOverflow.MARQUEE }) //超长滚动
|
|
|
.fontColor(Color.White)
|
|
|
}
|
|
|
.visibility(this.currentSong?.artist? Visibility.Visible:Visibility.None)
|
|
|
}
|
|
|
.padding({left:8})
|
|
|
- .geometryTransition('name', { follow: true }) // 绑定标识符
|
|
|
.alignItems(isLeft?HorizontalAlign.Start:HorizontalAlign.End)
|
|
|
.margin({ right: isLeft?22:10 })
|
|
|
.visibility(isLeft? Visibility.Visible:Visibility.None)
|
|
|
@@ -9446,6 +9446,7 @@ export struct LocalMusic {
|
|
|
logHiCarWindow(`isPhoneLan width=${this.windowWidth}`);
|
|
|
logHiCarWindow(`isPhoneLan height=${this.windowHeight}`);
|
|
|
logHiCarWindow(`window size: ${this.windowWidth}x${this.windowHeight}, isHiCarStatus=${this.isHiCarStatus}`);
|
|
|
+ logHiCarWindow(`window size: ${this.windowWidth}x${this.windowHeight}, curDisplayIsHiCar=${this.curDisplayIsHiCar}`);
|
|
|
logHiCarWindow(`window size: ${this.windowWidth}x${this.windowHeight}, isHiCarSmall=${this.isHiCarSmall()}`);
|
|
|
if (this.isHiCarKuanBianPing()) {
|
|
|
return true
|
|
|
@@ -11124,7 +11125,6 @@ export struct LocalMusic {
|
|
|
}
|
|
|
.justifyContent(FlexAlign.Start)
|
|
|
.zIndex(1)
|
|
|
- .geometryTransition('name')
|
|
|
.visibility(this.isCoverOpacity() ? Visibility.Visible : Visibility.None)
|
|
|
|
|
|
}
|
|
|
@@ -11178,7 +11178,6 @@ export struct LocalMusic {
|
|
|
.maxLines(1)
|
|
|
}
|
|
|
.zIndex(1)
|
|
|
- .geometryTransition('name') // 绑定标识符
|
|
|
.layoutWeight(1)
|
|
|
.margin({ left: 15 })
|
|
|
Blank()
|