From 68d856b1044d4e8d4be95c9260bd6170a26732e6 Mon Sep 17 00:00:00 2001 From: mark8044 <87546778+mark8044@users.noreply.github.com> Date: Sun, 14 Nov 2021 18:57:29 -0800 Subject: [PATCH] Update toolbar.dart --- lib/src/widgets/toolbar.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/src/widgets/toolbar.dart b/lib/src/widgets/toolbar.dart index cb0fbe8d..b2f72c23 100644 --- a/lib/src/widgets/toolbar.dart +++ b/lib/src/widgets/toolbar.dart @@ -60,7 +60,7 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget { const QuillToolbar({ required this.children, this.toolBarHeight = 36, - this.toolBarSectionSpacing = 4, + this.toolBarSectionSpacing, this.color, this.filePickImpl, this.multiRowsDisplay, @@ -443,6 +443,7 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget { ? Wrap( alignment: WrapAlignment.center, runSpacing: 4, + spacing:toolBarSectionSpacing, //spacing: _toolBarSectionSpacing, children: children, )