Add icon color to custom button (#1245)

pull/1250/head
Oxana Kostikova 2 years ago committed by GitHub
parent 94da3cfd46
commit 4dd4212b9a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      lib/src/models/themes/quill_custom_button.dart
  2. 6
      lib/src/widgets/toolbar.dart

@ -3,6 +3,7 @@ import 'package:flutter/material.dart';
class QuillCustomButton {
const QuillCustomButton({
this.icon,
this.iconColor,
this.onTap,
this.tooltip,
});
@ -10,6 +11,9 @@ class QuillCustomButton {
///The icon widget
final IconData? icon;
///The icon color;
final Color? iconColor;
///The function when the icon is tapped
final VoidCallback? onTap;

@ -570,7 +570,11 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget {
highlightElevation: 0,
hoverElevation: 0,
size: toolbarIconSize * kIconButtonFactor,
icon: Icon(customButton.icon, size: toolbarIconSize),
icon: Icon(
customButton.icon,
size: toolbarIconSize,
color: customButton.iconColor,
),
tooltip: customButton.tooltip,
borderRadius: iconTheme?.borderRadius ?? 2,
onPressed: customButton.onTap,

Loading…
Cancel
Save