Spaces:
Configuration error
Configuration error
File size: 3,263 Bytes
78013c4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 | import 'package:flutter/material.dart';
import 'package:smart_attendance_app/app/theme.dart';
import 'package:smart_attendance_app/shared/widgets/glass_card.dart';
/// Unified stat display widget replacing _QuickStat, _StatCard, _StatChip,
/// and _MonthStat across home, history, and analytics screens.
///
/// [variant] controls layout:
/// - [StatTileVariant.compact] — icon + value + label stacked vertically inside a GlassCard
/// - [StatTileVariant.pill] — value + label in a bordered container (no card wrapper)
/// - [StatTileVariant.minimal] — just value + label text (no container)
enum StatTileVariant { compact, pill, minimal }
class StatTile extends StatelessWidget {
final String label;
final String value;
final Color color;
final IconData? icon;
final StatTileVariant variant;
final VoidCallback? onTap;
const StatTile({
super.key,
required this.label,
required this.value,
required this.color,
this.icon,
this.variant = StatTileVariant.compact,
this.onTap,
});
@override
Widget build(BuildContext context) {
return switch (variant) {
StatTileVariant.compact => _buildCompact(),
StatTileVariant.pill => _buildPill(),
StatTileVariant.minimal => _buildMinimal(),
};
}
Widget _buildCompact() {
return GlassCard(
onTap: onTap,
padding: const EdgeInsets.symmetric(
vertical: SasSpacing.md,
horizontal: SasSpacing.sm,
),
child: Column(
children: [
if (icon != null) ...[
Icon(icon, size: 16, color: color),
const SizedBox(height: SasSpacing.xs),
],
FittedBox(
fit: BoxFit.scaleDown,
child: Text(
value,
style: TextStyle(
color: color,
fontWeight: FontWeight.w800,
fontSize: icon != null ? 14 : 20,
),
),
),
const SizedBox(height: 2),
Text(
label,
style: const TextStyle(
color: SasColors.textMuted,
fontSize: 10,
),
),
],
),
);
}
Widget _buildPill() {
return Container(
padding: const EdgeInsets.symmetric(vertical: SasSpacing.sm),
decoration: BoxDecoration(
color: color.withValues(alpha: 0.08),
borderRadius: SasRadius.mdAll,
border: Border.all(color: color.withValues(alpha: 0.2)),
),
child: Column(
children: [
Text(
value,
style: TextStyle(
color: color,
fontWeight: FontWeight.w800,
fontSize: 16,
),
),
Text(
label,
style: const TextStyle(color: SasColors.textMuted, fontSize: 10),
),
],
),
);
}
Widget _buildMinimal() {
return Column(
children: [
Text(
value,
style: TextStyle(
color: color,
fontWeight: FontWeight.w700,
fontSize: 16,
),
),
Text(
label,
style: const TextStyle(color: SasColors.textMuted, fontSize: 11),
),
],
);
}
}
|