Fix a typo in the QuillToolbarFontFamilyButton

pull/1649/head
Ellet 1 year ago
parent 62755f2bd3
commit 717237311f
  1. 6
      lib/src/widgets/toolbar/buttons/font_family_button.dart
  2. 2
      lib/src/widgets/toolbar/simple_toolbar.dart

@ -11,7 +11,7 @@ import '../base_toolbar.dart';
class QuillToolbarFontFamilyButton extends StatefulWidget { class QuillToolbarFontFamilyButton extends StatefulWidget {
QuillToolbarFontFamilyButton({ QuillToolbarFontFamilyButton({
required this.controller, required this.controller,
required this.defaultDispalyText, required this.defaultDisplayText,
this.options = const QuillToolbarFontFamilyButtonOptions(), this.options = const QuillToolbarFontFamilyButtonOptions(),
super.key, super.key,
}) : assert(options.rawItemsMap?.isNotEmpty ?? (true)), }) : assert(options.rawItemsMap?.isNotEmpty ?? (true)),
@ -22,7 +22,7 @@ class QuillToolbarFontFamilyButton extends StatefulWidget {
final QuillToolbarFontFamilyButtonOptions options; final QuillToolbarFontFamilyButtonOptions options;
@Deprecated('Please use the default display text from the 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 /// 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 /// in [didUpdateWidget] then we will have to store reference here
@ -64,7 +64,7 @@ class QuillToolbarFontFamilyButtonState
return options.initialValue ?? return options.initialValue ??
widget.options.defaultDisplayText ?? widget.options.defaultDisplayText ??
// ignore: deprecated_member_use_from_same_package // ignore: deprecated_member_use_from_same_package
widget.defaultDispalyText; widget.defaultDisplayText;
} }
// @override // @override

@ -77,7 +77,7 @@ class QuillSimpleToolbar extends StatelessWidget
QuillToolbarFontFamilyButton( QuillToolbarFontFamilyButton(
options: toolbarConfigurations.buttonOptions.fontFamily, options: toolbarConfigurations.buttonOptions.fontFamily,
controller: globalController, controller: globalController,
defaultDispalyText: context.loc.font, defaultDisplayText: context.loc.font,
), ),
if (configurations.showFontSize) if (configurations.showFontSize)
QuillToolbarFontSizeButton( QuillToolbarFontSizeButton(

Loading…
Cancel
Save