Files
PiliPlus/lib/common/widgets/stat/danmu.dart
2024-03-22 02:12:48 +08:00

41 lines
1.0 KiB
Dart

import 'package:flutter/material.dart';
import 'package:PiliPalaX/utils/utils.dart';
class StatDanMu extends StatelessWidget {
final String? theme;
final dynamic danmu;
final String? size;
const StatDanMu({Key? key, this.theme, this.danmu, this.size})
: super(key: key);
@override
Widget build(BuildContext context) {
Map<String, Color> colorObject = {
'white': Colors.white,
'gray': Theme.of(context).colorScheme.outline.withOpacity(0.8),
'black': Theme.of(context).colorScheme.onBackground.withOpacity(0.7),
};
Color color = colorObject[theme]!;
return Row(
children: [
Icon(
Icons.subtitles_outlined,
size: 14,
color: color,
),
const SizedBox(width: 2),
Text(
Utils.numFormat(danmu!),
style: TextStyle(
fontSize: size == 'medium' ? 12 : 11,
color: color,
),
overflow: TextOverflow.clip,
semanticsLabel: '${Utils.numFormat(danmu!)}条弹幕',
)
],
);
}
}