Files
eryao/apps/lib/shared/widgets/divination/yao_legend.dart
T

42 lines
1.4 KiB
Dart
Raw Normal View History

2026-04-03 16:56:47 +08:00
import 'package:flutter/material.dart';
import '../../../features/divination/data/models/divination_params.dart';
import '../../../l10n/app_localizations.dart';
2026-04-03 16:56:47 +08:00
import '../../theme/design_tokens.dart';
import 'divination_terms.dart';
class YaoLegend extends StatelessWidget {
const YaoLegend({super.key});
@override
Widget build(BuildContext context) {
final l10n = AppLocalizations.of(context)!;
2026-04-03 16:56:47 +08:00
final style = Theme.of(context).textTheme.bodySmall;
final mutedTextColor = Theme.of(
context,
).colorScheme.onSurface.withValues(alpha: 0.8);
return Wrap(
spacing: AppSpacing.md,
runSpacing: AppSpacing.xs,
children: [
Text(
'\u2014 ${DivinationTerms.yinYangLabel(l10n, true)}',
2026-04-03 16:56:47 +08:00
style: style?.copyWith(color: mutedTextColor),
),
Text(
'-- ${DivinationTerms.yinYangLabel(l10n, false)}',
2026-04-03 16:56:47 +08:00
style: style?.copyWith(color: mutedTextColor),
),
Text(
'${DivinationTerms.changeMarkOldYang} ${DivinationTerms.yaoTypeLabel(l10n, YaoType.oldYang)}${l10n.yaoMovingSuffix}',
2026-04-03 16:56:47 +08:00
style: style?.copyWith(color: mutedTextColor),
),
Text(
'${DivinationTerms.changeMarkOldYin} ${DivinationTerms.yaoTypeLabel(l10n, YaoType.oldYin)}${l10n.yaoMovingSuffix}',
2026-04-03 16:56:47 +08:00
style: style?.copyWith(color: mutedTextColor),
),
],
);
}
}