Add padding control in for toolbar buttons (#1592)

* Update quill_icon_button.dart

Add padding property to icon buttons

* Update quill_icon_theme.dart

Add padding to IconTheme

* Pass padding to the QuillToolbarIconButton

* Update quill_icon_button.dart

* CI fix for const

* CI fix?
pull/1601/head
mark8044 1 year ago committed by GitHub
parent e063afe61d
commit c40ccbe205
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 10
      lib/src/models/themes/quill_icon_theme.dart
  2. 9
      lib/src/widgets/toolbar/buttons/quill_icon_button.dart
  3. 1
      lib/src/widgets/toolbar/buttons/toggle_style_button.dart

@ -1,6 +1,4 @@
import 'package:flutter/widgets.dart' show Color; import 'package:flutter/material.dart';
import 'package:meta/meta.dart' show immutable;
@immutable @immutable
class QuillIconTheme { class QuillIconTheme {
@ -11,7 +9,8 @@ class QuillIconTheme {
this.iconUnselectedFillColor, this.iconUnselectedFillColor,
this.disabledIconColor, this.disabledIconColor,
this.disabledIconFillColor, this.disabledIconFillColor,
this.borderRadius}); this.borderRadius,
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;
@ -33,4 +32,7 @@ class QuillIconTheme {
///The borderRadius for icons ///The borderRadius for icons
final double? borderRadius; final double? borderRadius;
///The padding for icons
final EdgeInsets? padding;
} }

@ -7,6 +7,7 @@ class QuillToolbarIconButton extends StatelessWidget {
required this.isFilled, required this.isFilled,
this.afterPressed, this.afterPressed,
this.tooltip, this.tooltip,
this.padding,
super.key, super.key,
}); });
@ -15,14 +16,20 @@ class QuillToolbarIconButton extends StatelessWidget {
final Widget icon; final Widget icon;
final String? tooltip; final String? tooltip;
final EdgeInsets? padding;
final bool isFilled; final bool isFilled;
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
if (isFilled) { if (isFilled) {
return IconButton.filled(onPressed: onPressed, icon: icon); return IconButton.filled(
padding: padding,
constraints: const BoxConstraints(),
onPressed: onPressed, icon: icon);
} }
return IconButton( return IconButton(
padding: padding,
constraints: const BoxConstraints(),
onPressed: () { onPressed: () {
onPressed?.call(); onPressed?.call();
afterPressed?.call(); afterPressed?.call();

@ -254,5 +254,6 @@ Widget defaultToggleStyleButtonBuilder(
isFilled: isEnabled ? isToggled == true : false, isFilled: isEnabled ? isToggled == true : false,
onPressed: onPressed, onPressed: onPressed,
afterPressed: afterPressed, afterPressed: afterPressed,
padding: iconTheme?.padding
); );
} }

Loading…
Cancel
Save