opt uplist item

end align player duration

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-07-25 14:49:33 +08:00
parent d567c296f8
commit d17dbe139e
5 changed files with 22 additions and 26 deletions

View File

@@ -528,7 +528,7 @@ class _VideoIntroPanelState extends State<VideoIntroPanel>
selectStatus: videoIntroController.hasLike.value,
semanticsLabel: '点赞',
text: !isLoading
? NumUtil.numFormat(videoDetail.stat!.like!)
? NumUtil.numFormat(videoDetail.stat!.like)
: null,
needAnim: true,
hasTriple:
@@ -566,7 +566,7 @@ class _VideoIntroPanelState extends State<VideoIntroPanel>
selectStatus: videoIntroController.hasCoin,
semanticsLabel: '投币',
text: !isLoading
? NumUtil.numFormat(videoDetail.stat!.coin!)
? NumUtil.numFormat(videoDetail.stat!.coin)
: null,
needAnim: true,
),
@@ -584,7 +584,7 @@ class _VideoIntroPanelState extends State<VideoIntroPanel>
selectStatus: videoIntroController.hasFav.value,
semanticsLabel: '收藏',
text: !isLoading
? NumUtil.numFormat(videoDetail.stat!.favorite!)
? NumUtil.numFormat(videoDetail.stat!.favorite)
: null,
needAnim: true,
),