From 717237311fe2490fbffaada2e434c069ba3e6796 Mon Sep 17 00:00:00 2001 From: Ellet Date: Tue, 26 Dec 2023 16:21:32 +0300 Subject: [PATCH] Fix a typo in the QuillToolbarFontFamilyButton --- lib/src/widgets/toolbar/buttons/font_family_button.dart | 6 +++--- lib/src/widgets/toolbar/simple_toolbar.dart | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/src/widgets/toolbar/buttons/font_family_button.dart b/lib/src/widgets/toolbar/buttons/font_family_button.dart index f85b3f66..3b1065b6 100644 --- a/lib/src/widgets/toolbar/buttons/font_family_button.dart +++ b/lib/src/widgets/toolbar/buttons/font_family_button.dart @@ -11,7 +11,7 @@ import '../base_toolbar.dart'; class QuillToolbarFontFamilyButton extends StatefulWidget { QuillToolbarFontFamilyButton({ required this.controller, - required this.defaultDispalyText, + required this.defaultDisplayText, this.options = const QuillToolbarFontFamilyButtonOptions(), super.key, }) : assert(options.rawItemsMap?.isNotEmpty ?? (true)), @@ -22,7 +22,7 @@ class QuillToolbarFontFamilyButton extends StatefulWidget { final QuillToolbarFontFamilyButtonOptions options; @Deprecated('Please use the default display text from the options') - final String defaultDispalyText; + final String defaultDisplayText; /// Since we can't get the state from the instace of the widget for comparing /// in [didUpdateWidget] then we will have to store reference here @@ -64,7 +64,7 @@ class QuillToolbarFontFamilyButtonState return options.initialValue ?? widget.options.defaultDisplayText ?? // ignore: deprecated_member_use_from_same_package - widget.defaultDispalyText; + widget.defaultDisplayText; } // @override diff --git a/lib/src/widgets/toolbar/simple_toolbar.dart b/lib/src/widgets/toolbar/simple_toolbar.dart index 26000092..43b39577 100644 --- a/lib/src/widgets/toolbar/simple_toolbar.dart +++ b/lib/src/widgets/toolbar/simple_toolbar.dart @@ -77,7 +77,7 @@ class QuillSimpleToolbar extends StatelessWidget QuillToolbarFontFamilyButton( options: toolbarConfigurations.buttonOptions.fontFamily, controller: globalController, - defaultDispalyText: context.loc.font, + defaultDisplayText: context.loc.font, ), if (configurations.showFontSize) QuillToolbarFontSizeButton(