From f82ac1ff5dc2d337ff13cee356bd9152ce0495ff Mon Sep 17 00:00:00 2001 From: Ellet Date: Tue, 26 Dec 2023 16:30:30 +0300 Subject: [PATCH] Add defualt display text for select header style dropdown button --- .../select_header_style_dropdown_button_configurations.dart | 5 +++++ .../hearder_style/select_header_style_dropdown_button.dart | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/lib/src/models/config/toolbar/buttons/select_header_style_dropdown_button_configurations.dart b/lib/src/models/config/toolbar/buttons/select_header_style_dropdown_button_configurations.dart index ab1e2203..d163435d 100644 --- a/lib/src/models/config/toolbar/buttons/select_header_style_dropdown_button_configurations.dart +++ b/lib/src/models/config/toolbar/buttons/select_header_style_dropdown_button_configurations.dart @@ -30,6 +30,7 @@ class QuillToolbarSelectHeaderStyleDropdownButtonOptions this.textStyle, super.iconData, this.attributes, + this.defaultDisplayText, }); /// By default we will the toolbar axis from [QuillSimpleToolbarConfigurations] @@ -51,6 +52,8 @@ class QuillToolbarSelectHeaderStyleDropdownButtonOptions /// ``` final List>? attributes; + final String? defaultDisplayText; + QuillToolbarSelectHeaderStyleDropdownButtonOptions copyWith({ ValueChanged? onSelected, List>? attributes, @@ -61,6 +64,7 @@ class QuillToolbarSelectHeaderStyleDropdownButtonOptions VoidCallback? afterButtonPressed, String? tooltip, QuillIconTheme? iconTheme, + String? defaultDisplayText, }) { return QuillToolbarSelectHeaderStyleDropdownButtonOptions( attributes: attributes ?? this.attributes, @@ -70,6 +74,7 @@ class QuillToolbarSelectHeaderStyleDropdownButtonOptions iconTheme: iconTheme ?? this.iconTheme, iconSize: iconSize ?? this.iconSize, iconButtonFactor: iconButtonFactor ?? this.iconButtonFactor, + defaultDisplayText: defaultDisplayText ?? this.defaultDisplayText, ); } } diff --git a/lib/src/widgets/toolbar/buttons/hearder_style/select_header_style_dropdown_button.dart b/lib/src/widgets/toolbar/buttons/hearder_style/select_header_style_dropdown_button.dart index 75945d3e..dcd365a6 100644 --- a/lib/src/widgets/toolbar/buttons/hearder_style/select_header_style_dropdown_button.dart +++ b/lib/src/widgets/toolbar/buttons/hearder_style/select_header_style_dropdown_button.dart @@ -82,7 +82,8 @@ class _QuillToolbarSelectHeaderStyleDropdownButtonState Attribute.h4 => context.loc.heading4, Attribute.h5 => context.loc.heading5, Attribute.h6 => context.loc.heading6, - Attribute.header => context.loc.normal, + Attribute.header => + widget.options.defaultDisplayText ?? context.loc.normal, Attribute() => throw ArgumentError(), }; return label;