From 51a90fc83efbad3ad6e0157eceb453581bd92857 Mon Sep 17 00:00:00 2001 From: Aurino Salvador Date: Thu, 19 Sep 2024 14:59:14 -0300 Subject: [PATCH 1/2] Fixing FollyMenuHeader text color. --- lib/widgets/folly_menu_header.dart | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/lib/widgets/folly_menu_header.dart b/lib/widgets/folly_menu_header.dart index 2a1e0e5d..d3f36e47 100644 --- a/lib/widgets/folly_menu_header.dart +++ b/lib/widgets/folly_menu_header.dart @@ -182,7 +182,10 @@ class FollyUserHeader extends StatelessWidget { Expanded( child: Text( name, - style: Theme.of(context).primaryTextTheme.bodyLarge, + style: + Theme.of(context).primaryTextTheme.bodyLarge?.copyWith( + color: foreground, + ), overflow: TextOverflow.ellipsis, ), ), @@ -206,7 +209,10 @@ class FollyUserHeader extends StatelessWidget { Expanded( child: Text( email, - style: Theme.of(context).primaryTextTheme.bodyMedium, + style: + Theme.of(context).primaryTextTheme.bodyMedium?.copyWith( + color: foreground, + ), overflow: TextOverflow.ellipsis, ), ), @@ -236,7 +242,12 @@ class FollyUserHeader extends StatelessWidget { Expanded( child: Text( companyName, - style: Theme.of(context).primaryTextTheme.bodyMedium, + style: Theme.of(context) + .primaryTextTheme + .bodyMedium + ?.copyWith( + color: foreground, + ), overflow: TextOverflow.ellipsis, ), ), From 445f8cb22b77943e84459e24fec3c74ecca35e0c Mon Sep 17 00:00:00 2001 From: Eduardo Folly Date: Thu, 19 Sep 2024 15:19:50 -0300 Subject: [PATCH 2/2] Version bump 3.3.1. --- CHANGELOG.md | 4 ++++ example/pubspec.yaml | 2 +- pubspec.yaml | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 262dde35..ed9da4e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## [3.3.1] - 2024-09-19 + +* Fixing FollyMenuHeader text color. + ## [3.3.0] - 2024-09-15 * Bumping EmailValidator to ^3.0.0. diff --git a/example/pubspec.yaml b/example/pubspec.yaml index db147760..66fc913c 100644 --- a/example/pubspec.yaml +++ b/example/pubspec.yaml @@ -3,7 +3,7 @@ description: A new Flutter project. publish_to: 'none' -version: 3.3.0+218 +version: 3.3.1+219 environment: sdk: ">=3.4.0 <4.0.0" diff --git a/pubspec.yaml b/pubspec.yaml index 21dd305b..43903c47 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: folly_fields description: Basic form fields and utilities. -version: 3.3.0 +version: 3.3.1 repository: https://github.com/edufolly/folly_fields/ homepage: https://edufolly.github.io/folly_fields/