|
|
@ -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(); |
|
|
|