Fix the QuillIconTheme by replacing all the properties with two properties of type ButtonStyle, use IconButton.styleFrom()

pull/1634/head
Ellet 1 year ago
parent 6a4a893454
commit 8dc1ff79d5
  1. 3
      CHANGELOG.md
  2. 11
      example/lib/presentation/quill/my_quill_toolbar.dart
  3. 11
      flutter_quill_extensions/lib/embeds/formula/toolbar/formula_button.dart
  4. 9
      flutter_quill_extensions/lib/embeds/image/toolbar/image_button.dart
  5. 11
      flutter_quill_extensions/lib/embeds/others/camera_button/camera_button.dart
  6. 21
      flutter_quill_extensions/lib/embeds/video/toolbar/video_button.dart
  7. 34
      lib/src/models/themes/quill_icon_theme.dart
  8. 13
      lib/src/widgets/toolbar/buttons/clear_format_button.dart
  9. 41
      lib/src/widgets/toolbar/buttons/color/color_button.dart
  10. 2
      lib/src/widgets/toolbar/buttons/custom_button_button.dart
  11. 16
      lib/src/widgets/toolbar/buttons/font_family_button.dart
  12. 15
      lib/src/widgets/toolbar/buttons/font_size_button.dart
  13. 49
      lib/src/widgets/toolbar/buttons/hearder_style/select_header_style_buttons.dart
  14. 9
      lib/src/widgets/toolbar/buttons/history_button.dart
  15. 13
      lib/src/widgets/toolbar/buttons/indent_button.dart
  16. 9
      lib/src/widgets/toolbar/buttons/link_style2_button.dart
  17. 9
      lib/src/widgets/toolbar/buttons/link_style_button.dart
  18. 18
      lib/src/widgets/toolbar/buttons/quill_icon_button.dart
  19. 9
      lib/src/widgets/toolbar/buttons/search/search_button.dart
  20. 17
      lib/src/widgets/toolbar/buttons/toggle_style_button.dart

@ -2,6 +2,9 @@
All notable changes to this project will be documented in this file.
## 9.1.0-dev
* **Breaking Change**: in the `QuillSimpleToolbar` Fix the `QuillIconTheme` by replacing all the properties with two properties of type `ButtonStyle`, use `IconButton.styleFrom()`
## 9.0.6
* Fix bug in QuillToolbarSelectAlignmentButtons

@ -206,15 +206,20 @@ class MyQuillToolbar extends StatelessWidget {
// Request editor focus when any button is pressed
afterButtonPressed: focusNode.requestFocus,
// globalIconSize: 18,
iconTheme: QuillIconTheme(
iconButtonUnselectedStyle: IconButton.styleFrom(
backgroundColor: Colors.green,
),
iconButtonSelectedStyle: IconButton.styleFrom(
backgroundColor: Colors.red,
),
),
),
selectHeaderStyleDropdownButton:
const QuillToolbarSelectHeaderStyleDropdownButtonOptions(
textStyle: TextStyle(
fontSize: 20,
),
iconTheme: QuillIconTheme(
iconSelectedColor: Colors.red,
),
),
),
customButtons: [

@ -59,8 +59,6 @@ class QuillToolbarFormulaButton extends StatelessWidget {
@override
Widget build(BuildContext context) {
final theme = Theme.of(context);
final iconTheme = _iconTheme(context);
final tooltip = _tooltip(context);
@ -70,8 +68,6 @@ class QuillToolbarFormulaButton extends StatelessWidget {
final childBuilder =
options.childBuilder ?? baseButtonExtraOptions(context)?.childBuilder;
final iconColor = iconTheme?.iconUnselectedColor ?? theme.iconTheme.color;
if (childBuilder != null) {
return childBuilder(
QuillToolbarFormulaButtonOptions(
@ -91,10 +87,13 @@ class QuillToolbarFormulaButton extends StatelessWidget {
}
return QuillToolbarIconButton(
icon: Icon(iconData, size: iconSize * iconButtonFactor, color: iconColor),
icon: Icon(
iconData,
size: iconSize * iconButtonFactor,
),
tooltip: tooltip,
onPressed: () => _sharedOnPressed(context),
isFilled: false,
isSelected: false,
);
}

@ -96,20 +96,13 @@ class QuillToolbarImageButton extends StatelessWidget {
);
}
final theme = Theme.of(context);
final iconTheme = _iconTheme(context);
final iconColor = iconTheme?.iconUnselectedColor ?? theme.iconTheme.color;
return QuillToolbarIconButton(
icon: Icon(
iconData,
size: iconButtonFactor * iconSize,
color: iconColor,
),
tooltip: tooltip,
isFilled: false,
isSelected: false,
onPressed: () => _sharedOnPressed(context),
);
}

@ -103,14 +103,13 @@ class QuillToolbarCameraButton extends StatelessWidget {
);
}
final theme = Theme.of(context);
final iconColor = iconTheme?.iconUnselectedColor ?? theme.iconTheme.color;
return QuillToolbarIconButton(
icon: Icon(iconData, size: iconButtonFactor * iconSize, color: iconColor),
icon: Icon(
iconData,
size: iconButtonFactor * iconSize,
),
tooltip: tooltip,
isFilled: false,
isSelected: false,
// isDesktop(supportWeb: false) ? null :
onPressed: () => _sharedOnPressed(context),
);

@ -68,10 +68,6 @@ class QuillToolbarVideoButton extends StatelessWidget {
@override
Widget build(BuildContext context) {
final theme = Theme.of(context);
final iconTheme = _iconTheme(context);
final tooltip = _tooltip(context);
final iconSize = _iconSize(context);
final iconButtonFactor = _iconButtonFactor(context);
@ -79,9 +75,10 @@ class QuillToolbarVideoButton extends StatelessWidget {
final childBuilder =
options.childBuilder ?? baseButtonExtraOptions(context)?.childBuilder;
final iconColor = iconTheme?.iconUnselectedColor ?? theme.iconTheme.color;
final iconFillColor = iconTheme?.iconUnselectedFillColor ??
(options.fillColor ?? theme.canvasColor);
// final iconColor =
// iconTheme?.iconUnselectedFillColor ?? theme.iconTheme.color;
// final iconFillColor = iconTheme?.iconUnselectedFillColor ??
// (options.fillColor ?? theme.canvasColor);
if (childBuilder != null) {
return childBuilder(
@ -89,7 +86,7 @@ class QuillToolbarVideoButton extends StatelessWidget {
afterButtonPressed: _afterButtonPressed(context),
iconData: iconData,
dialogTheme: options.dialogTheme,
fillColor: iconFillColor,
// fillColor: iconFillColor,
iconSize: options.iconSize,
iconButtonFactor: iconButtonFactor,
linkRegExp: options.linkRegExp,
@ -106,9 +103,13 @@ class QuillToolbarVideoButton extends StatelessWidget {
}
return QuillToolbarIconButton(
icon: Icon(iconData, size: iconSize * iconButtonFactor, color: iconColor),
icon: Icon(
iconData,
size: iconSize * iconButtonFactor,
// color: iconColor,
),
tooltip: tooltip,
isFilled: false,
isSelected: false,
onPressed: () => _sharedOnPressed(context),
);
}

@ -3,36 +3,18 @@ import 'package:flutter/material.dart';
@immutable
class QuillIconTheme {
const QuillIconTheme({
this.iconSelectedColor,
this.iconUnselectedColor,
this.iconSelectedFillColor,
this.iconUnselectedFillColor,
this.disabledIconColor,
this.disabledIconFillColor,
this.borderRadius,
this.padding,
this.iconButtonSelectedStyle,
this.iconButtonUnselectedStyle,
// this.iconSelectedFillColor,
// this.iconUnselectedFillColor,
});
///The color to use for selected icons in the toolbar
final Color? iconSelectedColor;
final ButtonStyle? iconButtonUnselectedStyle;
final ButtonStyle? iconButtonSelectedStyle;
///The color to use for unselected icons in the toolbar
final Color? iconUnselectedColor;
///The fill color to use for the selected icons in the toolbar
final Color? iconSelectedFillColor;
///The fill color to use for the unselected icons in the toolbar
final Color? iconUnselectedFillColor;
///The color to use for disabled icons in the toolbar
final Color? disabledIconColor;
///The fill color to use for disabled icons in the toolbar
final Color? disabledIconFillColor;
///The borderRadius for icons
final double? borderRadius;
// final Color? iconSelectedFillColor;
// final Color? iconUnselectedFillColor;
///The padding for icons
final EdgeInsets? padding;

@ -104,16 +104,17 @@ class QuillToolbarClearFormatButton extends StatelessWidget {
);
}
final theme = Theme.of(context);
final iconColor = iconTheme?.iconUnselectedColor ?? theme.iconTheme.color;
return QuillToolbarIconButton(
tooltip: tooltip,
icon: Icon(iconData, size: iconSize * iconButtonFactor, color: iconColor),
isFilled: false,
icon: Icon(
iconData,
size: iconSize * iconButtonFactor,
// color: iconColor,
),
isSelected: false,
onPressed: _sharedOnPressed,
afterPressed: afterButtonPressed,
iconUnselectedStyle: iconTheme?.iconButtonUnselectedStyle,
);
}
}

@ -145,23 +145,22 @@ class QuillToolbarColorButtonState extends State<QuillToolbarColorButton> {
@override
Widget build(BuildContext context) {
final theme = Theme.of(context);
final iconColor = _isToggledColor && !widget.isBackground && !_isWhite
? stringToColor(_selectionStyle.attributes['color']!.value)
: (iconTheme?.iconUnselectedColor ?? theme.iconTheme.color);
final iconColorBackground =
_isToggledBackground && widget.isBackground && !_isWhiteBackground
? stringToColor(_selectionStyle.attributes['background']!.value)
: (iconTheme?.iconUnselectedColor ?? theme.iconTheme.color);
final fillColor = _isToggledColor && !widget.isBackground && _isWhite
? stringToColor('#ffffff')
: (iconTheme?.iconUnselectedFillColor ?? theme.canvasColor);
final fillColorBackground =
_isToggledBackground && widget.isBackground && _isWhiteBackground
? stringToColor('#ffffff')
: (iconTheme?.iconUnselectedFillColor ?? theme.canvasColor);
// final iconColor = _isToggledColor && !widget.isBackground && !_isWhite
// ? stringToColor(_selectionStyle.attributes['color']!.value)
// : (iconTheme?.iconUnselectedFillColor ?? theme.iconTheme.color);
// final iconColorBackground =
// _isToggledBackground && widget.isBackground && !_isWhiteBackground
// ? stringToColor(_selectionStyle.attributes['background']!.value)
// : (iconTheme?.iconUnselectedFillColor ?? theme.iconTheme.color);
// final fillColor = _isToggledColor && !widget.isBackground && _isWhite
// ? stringToColor('#ffffff')
// : (iconTheme?.iconUnselectedFillColor ?? theme.canvasColor);
// final fillColorBackground =
// _isToggledBackground && widget.isBackground && _isWhiteBackground
// ? stringToColor('#ffffff')
// : (iconTheme?.iconUnselectedFillColor ?? theme.canvasColor);
final childBuilder =
options.childBuilder ?? baseButtonExtraOptions?.childBuilder;
@ -187,9 +186,9 @@ class QuillToolbarColorButtonState extends State<QuillToolbarColorButton> {
afterButtonPressed?.call();
},
iconColor: null,
iconColorBackground: iconColorBackground,
fillColor: fillColor,
fillColorBackground: fillColorBackground,
iconColorBackground: Colors.red,
fillColor: Colors.red,
fillColorBackground: Colors.red,
),
);
}
@ -199,7 +198,7 @@ class QuillToolbarColorButtonState extends State<QuillToolbarColorButton> {
iconSize: iconSize * iconButtonFactor,
icon: Icon(
iconData,
color: widget.isBackground ? iconColorBackground : iconColor,
// color: widget.isBackground ? iconColorBackground : iconColor,
),
onPressed: _showColorPicker,
);

@ -81,7 +81,7 @@ class QuillToolbarCustomButton extends StatelessWidget {
return QuillToolbarIconButton(
icon: options.icon ?? const SizedBox.shrink(),
isFilled: false,
isSelected: false,
tooltip: tooltip,
onPressed: () => _onPressed(context),
afterPressed: afterButtonPressed,

@ -193,14 +193,7 @@ class QuillToolbarFontFamilyButtonState
return IconButton(
// tooltip: , // TODO: Use this here
visualDensity: VisualDensity.compact,
style: IconButton.styleFrom(
shape: iconTheme?.borderRadius != null
? RoundedRectangleBorder(
borderRadius: BorderRadius.circular(
iconTheme?.borderRadius ?? -1),
)
: null,
),
style: iconTheme?.iconButtonUnselectedStyle,
onPressed: _onPressed,
icon: _buildContent(context),
);
@ -281,7 +274,6 @@ class QuillToolbarFontFamilyButtonState
}
Widget _buildContent(BuildContext context) {
final theme = Theme.of(context);
final hasFinalWidth = options.width != null;
return Padding(
padding: options.padding ?? const EdgeInsets.fromLTRB(10, 0, 0, 0),
@ -299,8 +291,8 @@ class QuillToolbarFontFamilyButtonState
style: options.style ??
TextStyle(
fontSize: iconSize / 1.15,
color:
iconTheme?.iconUnselectedColor ?? theme.iconTheme.color,
// color: iconTheme?.iconUnselectedFillColor ??
// theme.iconTheme.color,
),
),
),
@ -308,7 +300,7 @@ class QuillToolbarFontFamilyButtonState
Icon(
Icons.arrow_drop_down,
size: iconSize / 1.15,
color: iconTheme?.iconUnselectedColor ?? theme.iconTheme.color,
// color: iconTheme?.iconUnselectedFillColor ?? theme.iconTheme.color,
)
],
),

@ -153,14 +153,7 @@ class QuillToolbarFontSizeButtonState
return IconButton(
tooltip: tooltip,
visualDensity: VisualDensity.compact,
style: IconButton.styleFrom(
shape: iconTheme?.borderRadius != null
? RoundedRectangleBorder(
borderRadius:
BorderRadius.circular(iconTheme?.borderRadius ?? -1),
)
: null,
),
style: iconTheme?.iconButtonUnselectedStyle,
onPressed: _onPressed,
icon: _buildContent(context),
);
@ -251,8 +244,8 @@ class QuillToolbarFontSizeButtonState
style: options.style ??
TextStyle(
fontSize: iconSize / 1.15,
color:
iconTheme?.iconUnselectedColor ?? theme.iconTheme.color,
// color: iconTheme?.iconUnselectedFillColor ??
// theme.iconTheme.color,
),
),
),
@ -260,7 +253,7 @@ class QuillToolbarFontSizeButtonState
Icon(
Icons.arrow_drop_down,
size: iconSize / 1.15,
color: iconTheme?.iconUnselectedColor ?? theme.iconTheme.color,
// color: iconTheme?.iconUnselectedFillColor ?? theme.iconTheme.color,
)
],
),

@ -1,7 +1,6 @@
import 'package:flutter/foundation.dart' show kIsWeb;
import 'package:flutter/material.dart';
import '../../../../../extensions.dart';
import '../../../../extensions/quill_configurations_ext.dart';
import '../../../../l10n/extensions/localizations.dart';
import '../../../../models/documents/attribute.dart';
@ -147,7 +146,7 @@ class QuillToolbarSelectHeaderStyleButtonsState
),
);
}
final theme = Theme.of(context);
// final theme = Theme.of(context);
final isSelected = _selectedAttribute == attribute;
return Padding(
padding: const EdgeInsets.symmetric(horizontal: !kIsWeb ? 1.0 : 5.0),
@ -156,33 +155,25 @@ class QuillToolbarSelectHeaderStyleButtonsState
width: iconSize * iconButtonFactor,
height: iconSize * iconButtonFactor,
),
child: UtilityWidgets.maybeTooltip(
message: tooltip,
child: RawMaterialButton(
hoverElevation: 0,
highlightElevation: 0,
elevation: 0,
visualDensity: VisualDensity.compact,
shape: RoundedRectangleBorder(
borderRadius:
BorderRadius.circular(iconTheme?.borderRadius ?? 2)),
fillColor: isSelected
? (iconTheme?.iconSelectedFillColor ?? theme.primaryColor)
: (iconTheme?.iconUnselectedFillColor ?? theme.canvasColor),
onPressed: () => _sharedOnPressed(attribute),
child: Text(
_valueToText[attribute] ??
(throw ArgumentError.notNull(
'attrbuite',
)),
style: style.copyWith(
color: isSelected
? (iconTheme?.iconSelectedColor ??
theme.primaryIconTheme.color)
: (iconTheme?.iconUnselectedColor ??
theme.iconTheme.color),
),
),
child: IconButton(
tooltip: tooltip,
visualDensity: VisualDensity.compact,
style: isSelected
? iconTheme?.iconButtonSelectedStyle
: iconTheme?.iconButtonUnselectedStyle,
onPressed: () => _sharedOnPressed(attribute),
icon: Text(
_valueToText[attribute] ??
(throw ArgumentError.notNull(
'attrbuite',
)),
style: style.copyWith(
// color: isSelected
// ? (iconTheme?.iconSelectedFillColor ??
// theme.primaryIconTheme.color)
// : (iconTheme?.iconUnselectedFillColor ??
// theme.iconTheme.color),
),
),
),
),

@ -102,11 +102,12 @@ class QuillToolbarHistoryButtonState extends State<QuillToolbarHistoryButton> {
icon: Icon(
iconData,
size: iconSize * iconButtonFactor,
color: _canPressed
? iconTheme?.iconUnselectedColor ?? theme.iconTheme.color
: iconTheme?.disabledIconColor ?? theme.disabledColor,
// TODO: HEeeerre
// color: _canPressed
// ? iconTheme?.iconUnselectedColor ?? theme.iconTheme.color
// : iconTheme?.disabledIconColor ?? theme.disabledColor,
),
isFilled: false,
isSelected: false,
onPressed: _updateHistory,
afterPressed: afterButtonPressed,
);

@ -104,15 +104,20 @@ class QuillToolbarIndentButtonState extends State<QuillToolbarIndentButton> {
),
);
}
final theme = Theme.of(context);
final iconColor = iconTheme?.iconUnselectedColor ?? theme.iconTheme.color;
// final iconColor = iconTheme?.iconUnselectedFillColor;
return QuillToolbarIconButton(
tooltip: tooltip,
icon: Icon(iconData, size: iconSize * iconButtonFactor, color: iconColor),
isFilled: false,
icon: Icon(
iconData,
size: iconSize * iconButtonFactor,
// color: iconColor,
),
isSelected: false,
onPressed: _sharedOnPressed,
afterPressed: afterButtonPressed,
iconSelectedStyle: iconTheme?.iconButtonSelectedStyle,
iconUnselectedStyle: iconTheme?.iconButtonUnselectedStyle,
);
}
}

@ -144,18 +144,17 @@ class _QuillToolbarLinkStyleButton2State
),
);
}
final theme = Theme.of(context);
final isToggled = _getLinkAttributeValue() != null;
return QuillToolbarIconButton(
tooltip: tooltip,
icon: Icon(
iconData,
size: iconSize * iconButtonFactor,
color: isToggled
? (iconTheme?.iconSelectedColor ?? theme.primaryIconTheme.color)
: (iconTheme?.iconUnselectedColor ?? theme.iconTheme.color),
// color: isToggled
// ? iconTheme?.iconSelectedFillColor
// : iconTheme?.iconUnselectedFillColor,
),
isFilled: isToggled,
isSelected: isToggled,
onPressed: _openLinkDialog,
afterPressed: afterButtonPressed,
);

@ -137,17 +137,16 @@ class QuillToolbarLinkStyleButtonState
),
);
}
final theme = Theme.of(context);
return QuillToolbarIconButton(
tooltip: tooltip,
icon: Icon(
iconData,
size: iconSize * iconButtonFactor,
color: isToggled
? (iconTheme?.iconSelectedColor ?? theme.primaryIconTheme.color)
: (iconTheme?.iconUnselectedColor ?? theme.iconTheme.color),
// color: isToggled
// ? iconTheme?.iconSelectedFillColor
// : iconTheme?.iconUnselectedFillColor,
),
isFilled: isToggled,
isSelected: isToggled,
onPressed: () => _openLinkDialog(context),
afterPressed: afterButtonPressed,
);

@ -4,13 +4,13 @@ class QuillToolbarIconButton extends StatelessWidget {
const QuillToolbarIconButton({
required this.onPressed,
required this.icon,
required this.isFilled,
required this.isSelected,
this.afterPressed,
this.tooltip,
this.padding,
super.key,
this.iconFilledStyle,
this.iconStyle,
this.iconSelectedStyle,
this.iconUnselectedStyle,
});
final VoidCallback? onPressed;
@ -19,18 +19,18 @@ class QuillToolbarIconButton extends StatelessWidget {
final String? tooltip;
final EdgeInsets? padding;
final bool isFilled;
final bool isSelected;
final ButtonStyle? iconStyle;
final ButtonStyle? iconFilledStyle;
final ButtonStyle? iconUnselectedStyle;
final ButtonStyle? iconSelectedStyle;
@override
Widget build(BuildContext context) {
if (isFilled) {
if (isSelected) {
return IconButton.filled(
padding: padding,
onPressed: onPressed,
icon: icon,
style: iconStyle,
style: iconSelectedStyle,
);
}
return IconButton(
@ -40,7 +40,7 @@ class QuillToolbarIconButton extends StatelessWidget {
afterPressed?.call();
},
icon: icon,
style: iconFilledStyle,
style: iconUnselectedStyle,
);
}
}

@ -107,18 +107,19 @@ class QuillToolbarSearchButton extends StatelessWidget {
);
}
final theme = Theme.of(context);
// final theme = Theme.of(context);
final iconColor = iconTheme?.iconUnselectedColor ?? theme.iconTheme.color;
// final iconColor =
// iconTheme?.iconUnselectedFillColor ?? theme.iconTheme.color;
return QuillToolbarIconButton(
tooltip: tooltip,
icon: Icon(
iconData,
size: iconSize * iconButtonFactor,
color: iconColor,
// color: iconColor,
),
isFilled: false,
isSelected: false,
onPressed: () => _sharedOnPressed(context),
afterPressed: afterButtonPressed,
);

@ -243,20 +243,17 @@ Widget defaultToggleStyleButtonBuilder(
double iconButtonFactor = kIconButtonFactor,
QuillIconTheme? iconTheme,
]) {
final theme = Theme.of(context);
final isEnabled = onPressed != null;
final iconColor = isEnabled
? isToggled == true
? (iconTheme?.iconSelectedColor ??
theme
.primaryIconTheme.color) //You can specify your own icon color
: (iconTheme?.iconUnselectedColor ?? theme.iconTheme.color)
: (iconTheme?.disabledIconColor ?? theme.disabledColor);
return QuillToolbarIconButton(
icon: Icon(icon, size: iconSize * iconButtonFactor, color: iconColor),
isFilled: isEnabled ? isToggled == true : false,
icon: Icon(
icon,
size: iconSize * iconButtonFactor,
),
isSelected: isEnabled ? isToggled == true : false,
onPressed: onPressed,
afterPressed: afterPressed,
padding: iconTheme?.padding,
iconUnselectedStyle: iconTheme?.iconButtonUnselectedStyle,
iconSelectedStyle: iconTheme?.iconButtonSelectedStyle,
);
}

Loading…
Cancel
Save