feat: dashboard

This commit is contained in:
efrilm
2025-08-18 01:50:50 +07:00
parent 51289d7829
commit 65ba81f311
25 changed files with 5786 additions and 606 deletions
@@ -7,7 +7,6 @@ class ReportStatTile extends StatelessWidget {
final String value;
final IconData icon;
final Color color;
final String change;
final double animatedValue;
const ReportStatTile({
super.key,
@@ -15,7 +14,6 @@ class ReportStatTile extends StatelessWidget {
required this.value,
required this.icon,
required this.color,
required this.change,
required this.animatedValue,
});
@@ -53,20 +51,6 @@ class ReportStatTile extends StatelessWidget {
child: Icon(icon, color: color, size: 24),
),
const Spacer(),
Container(
padding: const EdgeInsets.symmetric(horizontal: 8, vertical: 4),
decoration: BoxDecoration(
color: AppColor.success.withOpacity(0.1),
borderRadius: BorderRadius.circular(12),
),
child: Text(
change,
style: AppStyle.sm.copyWith(
color: AppColor.success,
fontWeight: FontWeight.w700,
),
),
),
],
),
const SizedBox(height: 16),