member audio

member comic

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-06-22 21:23:25 +08:00
parent c6a377b9d4
commit 79e30047f5
19 changed files with 640 additions and 33 deletions

View File

@@ -18,23 +18,13 @@ class StatWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
IconData iconData = switch (type) {
StatType.view => Icons.remove_red_eye_outlined,
StatType.danmaku => Icons.subtitles_outlined,
StatType.like => Icons.thumb_up_outlined,
StatType.reply => Icons.comment_outlined,
StatType.follow => Icons.favorite_border,
StatType.play => Icons.play_circle_outlined,
};
Color color = this.color ??
Theme.of(context).colorScheme.outline.withValues(alpha: 0.8);
return Row(
spacing: 2,
children: [
Icon(
iconData,
type.iconData,
size: iconSize,
color: color,
),