Skip to content

Commit

Permalink
Fix issue #158 Bug with the dialog to modify the tweets font size.
Browse files Browse the repository at this point in the history
  • Loading branch information
j-fbriere committed Jan 16, 2024
1 parent 07aba02 commit 2b8d309
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions android/fastlane/metadata/android/en-GB/changelogs/30.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* Fix issue #158 Bug with the dialog to modify the tweets font size.
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/changelogs/30.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* Fix issue #158 Bug with the dialog to modify the tweets font size.
2 changes: 1 addition & 1 deletion lib/settings/_theme.dart
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ class FontSizePickerDialogState extends State<FontSizePickerDialog> {

@override
Widget build(BuildContext context) {
double defaultFontSize = DefaultTextStyle.of(context).style.fontSize!;
double defaultFontSize = Theme.of(context).textTheme.bodyMedium!.fontSize!;
double minFontSize = defaultFontSize - 4;
double maxFontSize = defaultFontSize + 8;

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html

version: 3.6.1+29
version: 3.6.2+30

environment:
sdk: ">=2.18.0 <3.0.0"
Expand Down

0 comments on commit 2b8d309

Please sign in to comment.