mod: 登录时获取accessKey

This commit is contained in:
guozhigq
2023-12-03 00:58:41 +08:00
parent 4217fa26e2
commit c85f5abcdb
5 changed files with 9 additions and 6 deletions

View File

@ -333,8 +333,10 @@ class VideoStat extends StatelessWidget {
color: Theme.of(context).colorScheme.outline,
),
children: [
TextSpan(text: '${videoItem.stat.view}观看'),
TextSpan(text: '${videoItem.stat.danmu}弹幕'),
if (videoItem.stat.view != '-')
TextSpan(text: '${videoItem.stat.view}观看'),
if (videoItem.stat.danmu != '-')
TextSpan(text: '${videoItem.stat.danmu}弹幕'),
],
),
);