apply options.iconTheme for header buttons, fix header button text color (#1657)

pull/1682/head
Michael Allen 1 year ago committed by GitHub
parent 7bd542beb8
commit d23fe603b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 19
      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,
),
),
),
),

Loading…
Cancel
Save