Spaces:
Configuration error
Configuration error
File size: 3,239 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 | import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:smart_attendance_app/app/theme.dart';
import 'package:smart_attendance_app/shared/widgets/glass_card.dart';
/// Grid tile for the "More" tab quick-actions section.
/// Displays icon + label + optional subtitle and notification badge.
class MenuGridItem extends StatelessWidget {
final IconData icon;
final String label;
final String? subtitle;
final Color iconColor;
final int badgeCount;
final VoidCallback? onTap;
const MenuGridItem({
super.key,
required this.icon,
required this.label,
this.subtitle,
this.iconColor = SasColors.accentEmerald,
this.badgeCount = 0,
this.onTap,
});
@override
Widget build(BuildContext context) {
return GlassCard(
onTap: onTap != null
? () {
HapticFeedback.selectionClick();
onTap!();
}
: null,
padding: const EdgeInsets.all(16),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Container(
padding: const EdgeInsets.all(10),
decoration: BoxDecoration(
color: iconColor.withValues(alpha: 0.12),
borderRadius: SasRadius.mdAll,
border: Border.all(
color: iconColor.withValues(alpha: 0.25),
),
),
child: Icon(icon, color: iconColor, size: 20),
),
if (badgeCount > 0)
Container(
padding: const EdgeInsets.symmetric(
horizontal: 7,
vertical: 3,
),
decoration: BoxDecoration(
color: SasColors.danger,
borderRadius: SasRadius.xlAll,
boxShadow: [
BoxShadow(
color: SasColors.danger.withValues(alpha: 0.3),
blurRadius: 6,
spreadRadius: 1,
),
],
),
child: Text(
badgeCount > 99 ? '99+' : '$badgeCount',
style: const TextStyle(
color: Colors.white,
fontSize: 10,
fontWeight: FontWeight.w800,
),
),
),
],
),
const SizedBox(height: SasSpacing.md),
Text(
label,
style: const TextStyle(
fontWeight: FontWeight.w700,
fontSize: 14,
color: SasColors.textPrimary,
),
),
if (subtitle != null) ...[
const SizedBox(height: 3),
Text(
subtitle!,
style: const TextStyle(
color: SasColors.textMuted,
fontSize: 11,
fontWeight: FontWeight.w500,
),
),
],
],
),
);
}
}
|