From 7d7d51de4ad32dda4085067822116bd5708fe82c Mon Sep 17 00:00:00 2001 From: mark8044 <87546778+mark8044@users.noreply.github.com> Date: Sat, 7 May 2022 10:19:19 -0700 Subject: [PATCH] Update quill_dropdown_button.dart --- lib/src/widgets/toolbar/quill_dropdown_button.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/widgets/toolbar/quill_dropdown_button.dart b/lib/src/widgets/toolbar/quill_dropdown_button.dart index 772f71e2..af8c95b4 100644 --- a/lib/src/widgets/toolbar/quill_dropdown_button.dart +++ b/lib/src/widgets/toolbar/quill_dropdown_button.dart @@ -107,7 +107,7 @@ class _QuillDropdownButtonState extends State> { mainAxisSize: MainAxisSize.min, children: [ Text(_currentValue.toString(), style: TextStyle(fontSize: widget.iconSize / 1.15, color: widget.iconTheme?.iconUnselectedColor ?? theme.iconTheme.color)), - SizedBox(width: widget.iconSize / 3.83), + SizedBox(width: 3), Icon(Icons.arrow_drop_down, size: widget.iconSize / 1.15, color: widget.iconTheme?.iconUnselectedColor ?? theme.iconTheme.color) ], ),