feat: 实现起卦、设置与积分系统

This commit is contained in:
qzl
2026-04-03 16:56:47 +08:00
parent 31594558eb
commit f245eec5f6
170 changed files with 20728 additions and 328 deletions
+5 -4
View File
@@ -78,7 +78,7 @@ class _NavItem extends StatelessWidget {
@override
Widget build(BuildContext context) {
final colors = Theme.of(context).colorScheme;
final iconColor = selected ? colors.primary : colors.outline;
final iconColor = colors.primary;
return InkWell(
onTap: onTap,
borderRadius: BorderRadius.circular(AppRadius.md),
@@ -91,9 +91,10 @@ class _NavItem extends StatelessWidget {
const SizedBox(height: AppSpacing.xs),
Text(
label,
style: Theme.of(
context,
).textTheme.bodySmall?.copyWith(color: iconColor),
style: Theme.of(context).textTheme.bodySmall?.copyWith(
color: iconColor,
fontWeight: selected ? FontWeight.w600 : FontWeight.w500,
),
),
],
),