From 1ab2fc694a3a9d76b3b1933c08a7de6e2cadc75f Mon Sep 17 00:00:00 2001 From: mark8044 <87546778+mark8044@users.noreply.github.com> Date: Sun, 14 Nov 2021 08:51:28 -0800 Subject: [PATCH] Update select_alignment_button.dart --- lib/src/widgets/toolbar/select_alignment_button.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/src/widgets/toolbar/select_alignment_button.dart b/lib/src/widgets/toolbar/select_alignment_button.dart index 9761a96d..f525ce78 100644 --- a/lib/src/widgets/toolbar/select_alignment_button.dart +++ b/lib/src/widgets/toolbar/select_alignment_button.dart @@ -12,6 +12,7 @@ class SelectAlignmentButton extends StatefulWidget { required this.controller, this.iconSize = kDefaultIconSize, this.iconTheme, + this.showJustifyAlignment, Key? key, }) : super(key: key); @@ -19,6 +20,7 @@ class SelectAlignmentButton extends StatefulWidget { final double iconSize; final QuillIconTheme? iconTheme; + final bool showJustifyAlignment; @override _SelectAlignmentButtonState createState() => _SelectAlignmentButtonState();