feat: Version 3.5.2 - Configuration Stripe et gestion des immeubles

- Configuration complète Stripe pour les 3 environnements (DEV/REC/PROD)
  * DEV: Clés TEST Pierre (mode test)
  * REC: Clés TEST Client (mode test)
  * PROD: Clés LIVE Client (mode live)
- Ajout de la gestion des bases de données immeubles/bâtiments
  * Configuration buildings_database pour DEV/REC/PROD
  * Service BuildingService pour enrichissement des adresses
- Optimisations pages et améliorations ergonomie
- Mises à jour des dépendances Composer
- Nettoyage des fichiers obsolètes

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
pierre
2025-11-09 18:26:27 +01:00
parent 21657a3820
commit 2f5946a184
812 changed files with 142105 additions and 25992 deletions

View File

@@ -63,7 +63,7 @@ class AppTheme {
// Ombres
static List<BoxShadow> cardShadow = [
BoxShadow(
color: Colors.black.withValues(alpha: 0.05),
color: Colors.black.withOpacity(0.05),
spreadRadius: 1,
blurRadius: 10,
offset: const Offset(0, 3),
@@ -72,7 +72,7 @@ class AppTheme {
static List<BoxShadow> buttonShadow = [
BoxShadow(
color: Colors.black.withValues(alpha: 0.1),
color: Colors.black.withOpacity(0.1),
spreadRadius: 1,
blurRadius: 5,
offset: const Offset(0, 2),
@@ -158,14 +158,14 @@ class AppTheme {
border: OutlineInputBorder(
borderRadius: BorderRadius.circular(borderRadiusMedium),
borderSide: BorderSide(
color: textLightColor.withValues(alpha: 0.1),
color: textLightColor.withOpacity(0.1),
width: 1,
),
),
enabledBorder: OutlineInputBorder(
borderRadius: BorderRadius.circular(borderRadiusMedium),
borderSide: BorderSide(
color: textLightColor.withValues(alpha: 0.1),
color: textLightColor.withOpacity(0.1),
width: 1,
),
),
@@ -176,7 +176,7 @@ class AppTheme {
contentPadding: const EdgeInsets.symmetric(
horizontal: spacingM, vertical: spacingM),
),
cardTheme: CardThemeData(
cardTheme: CardTheme(
elevation: 2,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(borderRadiusXL),
@@ -255,14 +255,14 @@ class AppTheme {
border: OutlineInputBorder(
borderRadius: BorderRadius.circular(borderRadiusMedium),
borderSide: BorderSide(
color: textDarkColor.withValues(alpha: 0.1),
color: textDarkColor.withOpacity(0.1),
width: 1,
),
),
enabledBorder: OutlineInputBorder(
borderRadius: BorderRadius.circular(borderRadiusMedium),
borderSide: BorderSide(
color: textDarkColor.withValues(alpha: 0.1),
color: textDarkColor.withOpacity(0.1),
width: 1,
),
),
@@ -273,7 +273,7 @@ class AppTheme {
contentPadding: const EdgeInsets.symmetric(
horizontal: spacingM, vertical: spacingM),
),
cardTheme: CardThemeData(
cardTheme: CardTheme(
elevation: 4,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(borderRadiusXL),
@@ -281,7 +281,7 @@ class AppTheme {
color: const Color(0xFF1F2937),
),
dividerTheme: DividerThemeData(
color: textDarkColor.withValues(alpha: 0.1),
color: textDarkColor.withOpacity(0.1),
thickness: 1,
space: spacingM,
),
@@ -361,7 +361,7 @@ class AppTheme {
),
bodySmall: TextStyle(
fontFamily: 'Inter',
color: textColor.withValues(alpha: 0.7),
color: textColor.withOpacity(0.7),
fontSize: 12 * scaleFactor,
),
@@ -374,12 +374,12 @@ class AppTheme {
),
labelMedium: TextStyle(
fontFamily: 'Inter',
color: textColor.withValues(alpha: 0.7),
color: textColor.withOpacity(0.7),
fontSize: 12 * scaleFactor,
),
labelSmall: TextStyle(
fontFamily: 'Inter',
color: textColor.withValues(alpha: 0.7),
color: textColor.withOpacity(0.7),
fontSize: 11 * scaleFactor,
),
);
@@ -399,10 +399,10 @@ class AppTheme {
titleSmall: TextStyle(fontFamily: 'Inter', color: textColor, fontSize: 14, fontWeight: FontWeight.w600),
bodyLarge: TextStyle(fontFamily: 'Inter', color: textColor, fontSize: 16, fontWeight: FontWeight.w500),
bodyMedium: TextStyle(fontFamily: 'Inter', color: textColor, fontSize: 14, fontWeight: FontWeight.w500),
bodySmall: TextStyle(fontFamily: 'Inter', color: textColor.withValues(alpha: 0.7), fontSize: 12),
bodySmall: TextStyle(fontFamily: 'Inter', color: textColor.withOpacity(0.7), fontSize: 12),
labelLarge: TextStyle(fontFamily: 'Inter', color: textColor, fontSize: 14, fontWeight: FontWeight.w600),
labelMedium: TextStyle(fontFamily: 'Inter', color: textColor.withValues(alpha: 0.7), fontSize: 12),
labelSmall: TextStyle(fontFamily: 'Inter', color: textColor.withValues(alpha: 0.7), fontSize: 11),
labelMedium: TextStyle(fontFamily: 'Inter', color: textColor.withOpacity(0.7), fontSize: 12),
labelSmall: TextStyle(fontFamily: 'Inter', color: textColor.withOpacity(0.7), fontSize: 11),
);
}