From 9ebb93fca12d4e3a4297daae7fd22b7c899a166d Mon Sep 17 00:00:00 2001 From: Xavier Paquet-Rapold Date: Fri, 12 Apr 2024 20:43:02 -0400 Subject: [PATCH 1/3] Put Colors.white in darkTheme textStyle --- lib/ui/utils/app_theme.dart | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/ui/utils/app_theme.dart b/lib/ui/utils/app_theme.dart index d6dd248f3..0620e0075 100644 --- a/lib/ui/utils/app_theme.dart +++ b/lib/ui/utils/app_theme.dart @@ -104,15 +104,16 @@ class AppTheme { titleSmall: const TextStyle( fontSize: 20, fontWeight: FontWeight.w400, + color: Colors.white, ), bodySmall: const TextStyle( - fontSize: 14, + fontSize: 14, color: Colors.white, ), bodyMedium: const TextStyle( - fontSize: 16, + fontSize: 16, color: Colors.white, ), bodyLarge: const TextStyle( - fontSize: 18, + fontSize: 18, color: Colors.white, ), ), bottomNavigationBarTheme: darkTheme.bottomNavigationBarTheme From f9d84e83cab37de83282b393e60a8374fcc92f7c Mon Sep 17 00:00:00 2001 From: XavierPaquet-Rapold Date: Sat, 13 Apr 2024 00:44:45 +0000 Subject: [PATCH 2/3] [BOT] Applying version. --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 0d3ca24b6..0056f47bb 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -5,7 +5,7 @@ description: The 4th generation of ÉTSMobile, the main gateway between the Éco # pub.dev using `pub publish`. This is preferred for private packages. publish_to: 'none' # Remove this line if you wish to publish to pub.dev -version: 4.38.2+1 +version: 4.39.0+1 environment: sdk: ">=3.3.0 <4.0.0" From 95d70dfc168f9abd9bf0dad217da41c852b1a6f9 Mon Sep 17 00:00:00 2001 From: Xavier Paquet-Rapold Date: Fri, 12 Apr 2024 20:45:07 -0400 Subject: [PATCH 3/3] Format --- lib/ui/utils/app_theme.dart | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/lib/ui/utils/app_theme.dart b/lib/ui/utils/app_theme.dart index 0620e0075..5ff0519d5 100644 --- a/lib/ui/utils/app_theme.dart +++ b/lib/ui/utils/app_theme.dart @@ -107,13 +107,16 @@ class AppTheme { color: Colors.white, ), bodySmall: const TextStyle( - fontSize: 14, color: Colors.white, + fontSize: 14, + color: Colors.white, ), bodyMedium: const TextStyle( - fontSize: 16, color: Colors.white, + fontSize: 16, + color: Colors.white, ), bodyLarge: const TextStyle( - fontSize: 18, color: Colors.white, + fontSize: 18, + color: Colors.white, ), ), bottomNavigationBarTheme: darkTheme.bottomNavigationBarTheme