|
|
@@ -913,7 +913,7 @@ export struct WebDavMainPage {
|
|
|
.fontColor($r('app.color.index_tab_font_color'))
|
|
|
.margin({ left: 12 })
|
|
|
}
|
|
|
- .padding({top: this.topSafeHeight + 180, bottom: 20, left: 20, right: 20})
|
|
|
+ .padding({top: this.topSafeHeight + 90, bottom: 20, left: 20, right: 20})
|
|
|
.visibility(this.isLoading?Visibility.Visible:Visibility.None)
|
|
|
.opacity(this.isLoading ? 1 : 0)
|
|
|
.animation({
|
|
|
@@ -1043,7 +1043,7 @@ export struct WebDavMainPage {
|
|
|
.maxLines(1)
|
|
|
.visibility(song.artist?Visibility.Visible:Visibility.None)
|
|
|
.textOverflow({ overflow: TextOverflow.Ellipsis })
|
|
|
- Text(decodeUrlEncodedString(song.size||"")+' '+song.cTime)
|
|
|
+ Text(decodeUrlEncodedString(song.size||""))
|
|
|
.fontSize(13)
|
|
|
.fontColor(this.currentSong?.filePath==song.filePath?this.themeColor:
|
|
|
$r('app.color.index_tab_font_color'))
|
|
|
@@ -1056,6 +1056,7 @@ export struct WebDavMainPage {
|
|
|
$r('app.color.index_tab_font_color'))
|
|
|
.opacity(0.6)
|
|
|
.maxLines(1)
|
|
|
+ .padding({left: 10})
|
|
|
.visibility(StrUtil.isNotEmpty(song.artist)?Visibility.None:Visibility.Visible)
|
|
|
.textOverflow({ overflow: TextOverflow.Ellipsis })
|
|
|
}
|