Skip to content

Commit

Permalink
Merge pull request #244 from edufolly/dev
Browse files Browse the repository at this point in the history
Version 3.3.1.
  • Loading branch information
edufolly authored Sep 19, 2024
2 parents 4cc064d + 445f8cb commit 3e021f1
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
17 changes: 14 additions & 3 deletions lib/widgets/folly_menu_header.dart
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,10 @@ class FollyUserHeader<O> extends StatelessWidget {
Expanded(
child: Text(
name,
style: Theme.of(context).primaryTextTheme.bodyLarge,
style:
Theme.of(context).primaryTextTheme.bodyLarge?.copyWith(
color: foreground,
),
overflow: TextOverflow.ellipsis,
),
),
Expand All @@ -206,7 +209,10 @@ class FollyUserHeader<O> extends StatelessWidget {
Expanded(
child: Text(
email,
style: Theme.of(context).primaryTextTheme.bodyMedium,
style:
Theme.of(context).primaryTextTheme.bodyMedium?.copyWith(
color: foreground,
),
overflow: TextOverflow.ellipsis,
),
),
Expand Down Expand Up @@ -236,7 +242,12 @@ class FollyUserHeader<O> extends StatelessWidget {
Expanded(
child: Text(
companyName,
style: Theme.of(context).primaryTextTheme.bodyMedium,
style: Theme.of(context)
.primaryTextTheme
.bodyMedium
?.copyWith(
color: foreground,
),
overflow: TextOverflow.ellipsis,
),
),
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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/

Expand Down

0 comments on commit 3e021f1

Please sign in to comment.