diff --git a/lib/common/widgets/stat/danmu.dart b/lib/common/widgets/stat/danmu.dart index 155c2f319..a754e8e96 100644 --- a/lib/common/widgets/stat/danmu.dart +++ b/lib/common/widgets/stat/danmu.dart @@ -28,6 +28,7 @@ class StatDanMu extends StatelessWidget { Text( Utils.numFormat(danmu!), style: TextStyle( + fontWeight: FontWeight.w400, fontSize: size == 'medium' ? 12 : 11, color: color, ), diff --git a/lib/common/widgets/stat/view.dart b/lib/common/widgets/stat/view.dart index 280844f1d..c4f7630be 100644 --- a/lib/common/widgets/stat/view.dart +++ b/lib/common/widgets/stat/view.dart @@ -31,6 +31,7 @@ class StatView extends StatelessWidget { Text( Utils.numFormat(view!), style: TextStyle( + fontWeight: FontWeight.w400, fontSize: size == 'medium' ? 12 : 11, color: color, ), diff --git a/lib/common/widgets/video_card_h.dart b/lib/common/widgets/video_card_h.dart index 4a4216556..e26f42757 100644 --- a/lib/common/widgets/video_card_h.dart +++ b/lib/common/widgets/video_card_h.dart @@ -245,6 +245,7 @@ class VideoContent extends StatelessWidget { "${pubdate} ${showOwner ? videoItem.owner.name : ''}", maxLines: 1, style: TextStyle( + fontWeight: FontWeight.w400, fontSize: Theme.of(context).textTheme.labelSmall!.fontSize, height: 1, color: Theme.of(context).colorScheme.outline,