refactoring

This commit is contained in:
dahoud
2026-03-31 09:14:47 +00:00
parent 9bfffeeebe
commit 5383df6dcb
200 changed files with 11192 additions and 7063 deletions

View File

@@ -136,12 +136,12 @@ class StatCard extends StatelessWidget {
Row(
children: [
Container(
padding: const EdgeInsets.all(8),
padding: const EdgeInsets.all(7),
decoration: BoxDecoration(
color: color.withOpacity(0.1),
borderRadius: BorderRadius.circular(8),
),
child: Icon(icon, color: color, size: 20),
child: Icon(icon, color: color, size: 16),
),
const Spacer(),
Column(
@@ -152,7 +152,7 @@ class StatCard extends StatelessWidget {
style: TextStyle(
fontWeight: FontWeight.bold,
color: color,
fontSize: 20,
fontSize: 16,
),
),
if (subtitle.isNotEmpty)
@@ -167,13 +167,13 @@ class StatCard extends StatelessWidget {
),
],
),
const SizedBox(height: 12),
const SizedBox(height: 8),
Text(
title,
style: const TextStyle(
fontWeight: FontWeight.w600,
color: Color(0xFF1F2937),
fontSize: 14,
fontSize: 13,
),
),
],
@@ -188,12 +188,12 @@ class StatCard extends StatelessWidget {
Row(
children: [
Container(
padding: const EdgeInsets.all(12),
padding: const EdgeInsets.all(7),
decoration: BoxDecoration(
color: color.withOpacity(0.1),
borderRadius: BorderRadius.circular(12),
borderRadius: BorderRadius.circular(8),
),
child: Icon(icon, color: color, size: 24),
child: Icon(icon, color: color, size: 16),
),
const Spacer(),
Column(
@@ -204,7 +204,7 @@ class StatCard extends StatelessWidget {
style: TextStyle(
fontWeight: FontWeight.bold,
color: color,
fontSize: 24,
fontSize: 18,
),
),
if (subtitle.isNotEmpty)
@@ -219,13 +219,13 @@ class StatCard extends StatelessWidget {
),
],
),
const SizedBox(height: 16),
const SizedBox(height: 8),
Text(
title,
style: const TextStyle(
fontWeight: FontWeight.w600,
color: Color(0xFF1F2937),
fontSize: 16,
fontSize: 13,
),
),
],
@@ -240,7 +240,7 @@ class StatCard extends StatelessWidget {
case StatCardSize.normal:
return const EdgeInsets.all(12);
case StatCardSize.large:
return const EdgeInsets.all(16);
return const EdgeInsets.all(10);
}
}
@@ -256,13 +256,6 @@ class StatCard extends StatelessWidget {
return BoxDecoration(
color: Colors.white,
borderRadius: BorderRadius.circular(8),
boxShadow: [
BoxShadow(
color: Colors.black.withOpacity(0.05),
blurRadius: 8,
offset: const Offset(0, 2),
),
],
);
case StatCardStyle.outlined:
return BoxDecoration(