From d23fe603b796562b43431544c5d80ff4b04b5629 Mon Sep 17 00:00:00 2001 From: Michael Allen Date: Sun, 31 Dec 2023 08:31:48 -0800 Subject: [PATCH] apply options.iconTheme for header buttons, fix header button text color (#1657) --- .../select_header_style_buttons.dart | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) diff --git a/lib/src/widgets/toolbar/buttons/hearder_style/select_header_style_buttons.dart b/lib/src/widgets/toolbar/buttons/hearder_style/select_header_style_buttons.dart index cb3648dd..6cb72cac 100644 --- a/lib/src/widgets/toolbar/buttons/hearder_style/select_header_style_buttons.dart +++ b/lib/src/widgets/toolbar/buttons/hearder_style/select_header_style_buttons.dart @@ -157,14 +157,7 @@ class QuillToolbarSelectHeaderStyleButtonsState ), child: QuillToolbarIconButton( tooltip: tooltip, - iconTheme: iconTheme?.copyWith( - iconButtonSelectedData: const IconButtonData( - visualDensity: VisualDensity.compact, - ), - iconButtonUnselectedData: const IconButtonData( - visualDensity: VisualDensity.compact, - ), - ), + iconTheme: iconTheme, isSelected: isSelected, onPressed: () => _sharedOnPressed(attribute), icon: Text( @@ -173,12 +166,10 @@ class QuillToolbarSelectHeaderStyleButtonsState 'attrbuite', )), style: style.copyWith( - // color: isSelected - // ? (iconTheme?.iconSelectedFillColor ?? - // theme.primaryIconTheme.color) - // : (iconTheme?.iconUnselectedFillColor ?? - // theme.iconTheme.color), - ), + color: isSelected + ? iconTheme?.iconButtonSelectedData?.color + : iconTheme?.iconButtonUnselectedData?.color, + ), ), ), ),