Add defualt display text for select header style dropdown button

pull/1649/head
Ellet 1 year ago
parent 717237311f
commit f82ac1ff5d
  1. 5
      lib/src/models/config/toolbar/buttons/select_header_style_dropdown_button_configurations.dart
  2. 3
      lib/src/widgets/toolbar/buttons/hearder_style/select_header_style_dropdown_button.dart

@ -30,6 +30,7 @@ class QuillToolbarSelectHeaderStyleDropdownButtonOptions
this.textStyle, this.textStyle,
super.iconData, super.iconData,
this.attributes, this.attributes,
this.defaultDisplayText,
}); });
/// By default we will the toolbar axis from [QuillSimpleToolbarConfigurations] /// By default we will the toolbar axis from [QuillSimpleToolbarConfigurations]
@ -51,6 +52,8 @@ class QuillToolbarSelectHeaderStyleDropdownButtonOptions
/// ``` /// ```
final List<Attribute<int?>>? attributes; final List<Attribute<int?>>? attributes;
final String? defaultDisplayText;
QuillToolbarSelectHeaderStyleDropdownButtonOptions copyWith({ QuillToolbarSelectHeaderStyleDropdownButtonOptions copyWith({
ValueChanged<String>? onSelected, ValueChanged<String>? onSelected,
List<Attribute<int>>? attributes, List<Attribute<int>>? attributes,
@ -61,6 +64,7 @@ class QuillToolbarSelectHeaderStyleDropdownButtonOptions
VoidCallback? afterButtonPressed, VoidCallback? afterButtonPressed,
String? tooltip, String? tooltip,
QuillIconTheme? iconTheme, QuillIconTheme? iconTheme,
String? defaultDisplayText,
}) { }) {
return QuillToolbarSelectHeaderStyleDropdownButtonOptions( return QuillToolbarSelectHeaderStyleDropdownButtonOptions(
attributes: attributes ?? this.attributes, attributes: attributes ?? this.attributes,
@ -70,6 +74,7 @@ class QuillToolbarSelectHeaderStyleDropdownButtonOptions
iconTheme: iconTheme ?? this.iconTheme, iconTheme: iconTheme ?? this.iconTheme,
iconSize: iconSize ?? this.iconSize, iconSize: iconSize ?? this.iconSize,
iconButtonFactor: iconButtonFactor ?? this.iconButtonFactor, iconButtonFactor: iconButtonFactor ?? this.iconButtonFactor,
defaultDisplayText: defaultDisplayText ?? this.defaultDisplayText,
); );
} }
} }

@ -82,7 +82,8 @@ class _QuillToolbarSelectHeaderStyleDropdownButtonState
Attribute.h4 => context.loc.heading4, Attribute.h4 => context.loc.heading4,
Attribute.h5 => context.loc.heading5, Attribute.h5 => context.loc.heading5,
Attribute.h6 => context.loc.heading6, Attribute.h6 => context.loc.heading6,
Attribute.header => context.loc.normal, Attribute.header =>
widget.options.defaultDisplayText ?? context.loc.normal,
Attribute<dynamic>() => throw ArgumentError(), Attribute<dynamic>() => throw ArgumentError(),
}; };
return label; return label;

Loading…
Cancel
Save