This commit is contained in:
2026-07-27 21:32:03 +02:00
parent 160b4e4cda
commit 77c1747b40
23 changed files with 1392 additions and 87 deletions
+6 -6
View File
@@ -63,7 +63,7 @@ final ThemeData darkTheme = ThemeData(
iconButtonTheme: IconButtonThemeData(
style: IconButton.styleFrom(
backgroundColor: Colors.white.withOpacity(0.05),
backgroundColor: Colors.white.withValues(alpha: 0.05),
foregroundColor: Colors.white70,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(AppRadii.md),
@@ -90,7 +90,7 @@ final ThemeData darkTheme = ThemeData(
elevation: 0,
backgroundColor: _violet,
foregroundColor: Colors.white,
disabledBackgroundColor: Colors.white.withOpacity(0.06),
disabledBackgroundColor: Colors.white.withValues(alpha: 0.06),
disabledForegroundColor: Colors.white24,
padding: const EdgeInsets.symmetric(
horizontal: AppSpacing.xl,
@@ -195,7 +195,7 @@ final ThemeData darkTheme = ThemeData(
navigationBarTheme: NavigationBarThemeData(
backgroundColor: _surface,
indicatorColor: _violet.withOpacity(0.25),
indicatorColor: _violet.withValues(alpha: 0.25),
labelTextStyle: const WidgetStatePropertyAll(
TextStyle(fontWeight: FontWeight.w600),
),
@@ -484,7 +484,7 @@ final ThemeData lightTheme = ThemeData(
iconButtonTheme: IconButtonThemeData(
style: IconButton.styleFrom(
backgroundColor: Colors.black.withOpacity(0.04),
backgroundColor: Colors.black.withValues(alpha: 0.04),
foregroundColor: Colors.black54,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(AppRadii.md),
@@ -511,7 +511,7 @@ final ThemeData lightTheme = ThemeData(
elevation: 0,
backgroundColor: _violetL,
foregroundColor: Colors.white,
disabledBackgroundColor: Colors.black.withOpacity(0.06),
disabledBackgroundColor: Colors.black.withValues(alpha: 0.06),
disabledForegroundColor: Colors.black26,
padding: const EdgeInsets.symmetric(
horizontal: AppSpacing.xl,
@@ -616,7 +616,7 @@ final ThemeData lightTheme = ThemeData(
navigationBarTheme: NavigationBarThemeData(
backgroundColor: _surfaceL,
indicatorColor: _violetL.withOpacity(0.15),
indicatorColor: _violetL.withValues(alpha: 0.15),
labelTextStyle: const WidgetStatePropertyAll(
TextStyle(fontWeight: FontWeight.w600),
),