Update QuillToolbarIconButton

pull/1621/head^2
Ellet 1 year ago
parent a70daa7bf9
commit fe96d08201
  1. 19
      lib/src/models/themes/quill_icon_theme.dart
  2. 6
      lib/src/widgets/toolbar/buttons/quill_icon_button.dart

@ -2,15 +2,16 @@ import 'package:flutter/material.dart';
@immutable @immutable
class QuillIconTheme { class QuillIconTheme {
const QuillIconTheme( const QuillIconTheme({
{this.iconSelectedColor, this.iconSelectedColor,
this.iconUnselectedColor, this.iconUnselectedColor,
this.iconSelectedFillColor, this.iconSelectedFillColor,
this.iconUnselectedFillColor, this.iconUnselectedFillColor,
this.disabledIconColor, this.disabledIconColor,
this.disabledIconFillColor, this.disabledIconFillColor,
this.borderRadius, this.borderRadius,
this.padding}); this.padding,
});
///The color to use for selected icons in the toolbar ///The color to use for selected icons in the toolbar
final Color? iconSelectedColor; final Color? iconSelectedColor;

@ -9,6 +9,8 @@ class QuillToolbarIconButton extends StatelessWidget {
this.tooltip, this.tooltip,
this.padding, this.padding,
super.key, super.key,
this.iconFilledStyle,
this.iconStyle,
}); });
final VoidCallback? onPressed; final VoidCallback? onPressed;
@ -19,6 +21,8 @@ class QuillToolbarIconButton extends StatelessWidget {
final EdgeInsets? padding; final EdgeInsets? padding;
final bool isFilled; final bool isFilled;
final ButtonStyle? iconStyle;
final ButtonStyle? iconFilledStyle;
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
if (isFilled) { if (isFilled) {
@ -26,6 +30,7 @@ class QuillToolbarIconButton extends StatelessWidget {
padding: padding, padding: padding,
onPressed: onPressed, onPressed: onPressed,
icon: icon, icon: icon,
style: iconStyle,
); );
} }
return IconButton( return IconButton(
@ -35,6 +40,7 @@ class QuillToolbarIconButton extends StatelessWidget {
afterPressed?.call(); afterPressed?.call();
}, },
icon: icon, icon: icon,
style: iconFilledStyle,
); );
} }
} }

Loading…
Cancel
Save