From 75ebd0585870313e56c876e9c1e8ad192723a650 Mon Sep 17 00:00:00 2001 From: Ellet <73608287+freshtechtips@users.noreply.github.com> Date: Sun, 5 Nov 2023 04:01:25 +0300 Subject: [PATCH] Remove unused comments --- .../widgets/toolbar/buttons/toggle_style.dart | 37 ------------------- 1 file changed, 37 deletions(-) diff --git a/lib/src/widgets/toolbar/buttons/toggle_style.dart b/lib/src/widgets/toolbar/buttons/toggle_style.dart index d228c680..439df53b 100644 --- a/lib/src/widgets/toolbar/buttons/toggle_style.dart +++ b/lib/src/widgets/toolbar/buttons/toggle_style.dart @@ -116,43 +116,6 @@ class QuillToolbarToggleStyleButtonState } } - // IconData get _defaultIconData { - // switch (widget.attribute.key) { - // case 'bold': - // return Icons.format_bold; - // case 'script': - // if (widget.attribute.value == ScriptAttributes.sub.value) { - // return Icons.subscript; - // } - // return Icons.superscript; - // case 'italic': - // return Icons.format_italic; - // case 'small': - // return Icons.format_size; - // case 'underline': - // return Icons.format_underline; - // case 'strike': - // return Icons.format_strikethrough; - // case 'code': - // return Icons.code; - // case 'rtl': - // return Icons.format_textdirection_r_to_l; - // case 'list': - // if (widget.attribute.value == 'bullet') { - // return Icons.format_list_bulleted; - // } - // return Icons.format_list_numbered; - // case 'code-block': - // return Icons.code; - // case 'blockquote': - // return Icons.format_quote; - // default: - // throw ArgumentError( - // 'Could not find the icon for ${widget.attribute.toString()}', - // ); - // } - // } - String? get tooltip { return options.tooltip ?? context.requireQuillToolbarBaseButtonOptions.tooltip ??