Update select_alignment_button.dart

pull/459/head
mark8044 4 years ago committed by GitHub
parent c3fe37ae63
commit 1ab2fc694a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      lib/src/widgets/toolbar/select_alignment_button.dart

@ -12,6 +12,7 @@ class SelectAlignmentButton extends StatefulWidget {
required this.controller, required this.controller,
this.iconSize = kDefaultIconSize, this.iconSize = kDefaultIconSize,
this.iconTheme, this.iconTheme,
this.showJustifyAlignment,
Key? key, Key? key,
}) : super(key: key); }) : super(key: key);
@ -19,6 +20,7 @@ class SelectAlignmentButton extends StatefulWidget {
final double iconSize; final double iconSize;
final QuillIconTheme? iconTheme; final QuillIconTheme? iconTheme;
final bool showJustifyAlignment;
@override @override
_SelectAlignmentButtonState createState() => _SelectAlignmentButtonState(); _SelectAlignmentButtonState createState() => _SelectAlignmentButtonState();

Loading…
Cancel
Save