Intégration fonctionnalites V1

This commit is contained in:
bastien
2026-07-04 22:46:14 +02:00
parent bf191d6396
commit 9f352b91d2
25 changed files with 779 additions and 184 deletions
+14 -1
View File
@@ -70,8 +70,21 @@ class AppTheme {
style: ElevatedButton.styleFrom(
minimumSize: const Size.fromHeight(48),
elevation: 0,
backgroundColor: AppColors.primary,
backgroundColor: AppColors.success,
foregroundColor: Colors.white,
disabledBackgroundColor: AppColors.success.withValues(alpha: 0.4),
disabledForegroundColor: Colors.white70,
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(12)),
textStyle: const TextStyle(fontWeight: FontWeight.w600, fontSize: 16),
),
),
filledButtonTheme: FilledButtonThemeData(
style: FilledButton.styleFrom(
minimumSize: const Size.fromHeight(48),
backgroundColor: AppColors.success,
foregroundColor: Colors.white,
disabledBackgroundColor: AppColors.success.withValues(alpha: 0.5),
disabledForegroundColor: Colors.white.withValues(alpha: 0.8),
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(12)),
textStyle: const TextStyle(fontWeight: FontWeight.w600, fontSize: 16),
),