39 lines
1.2 KiB
Dart
39 lines
1.2 KiB
Dart
import 'package:flutter/material.dart';
|
|
|
|
import '../../theme/design_tokens.dart';
|
|
import 'divination_terms.dart';
|
|
|
|
class YaoLegend extends StatelessWidget {
|
|
const YaoLegend({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
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.yinYang[true]}',
|
|
style: style?.copyWith(color: mutedTextColor),
|
|
),
|
|
Text(
|
|
'-- ${DivinationTerms.yinYang[false]}',
|
|
style: style?.copyWith(color: mutedTextColor),
|
|
),
|
|
Text(
|
|
'${DivinationTerms.changeMarkOldYang} ${DivinationTerms.yaoTypeLabels[YaoTypeLabel.oldYang]}(变)',
|
|
style: style?.copyWith(color: mutedTextColor),
|
|
),
|
|
Text(
|
|
'${DivinationTerms.changeMarkOldYin} ${DivinationTerms.yaoTypeLabels[YaoTypeLabel.oldYin]}(变)',
|
|
style: style?.copyWith(color: mutedTextColor),
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|