fix indent button

pull/13/head
li3317 4 years ago
parent 1be4742517
commit 3a381916d6
  1. 7
      lib/widgets/toolbar.dart

@ -682,8 +682,7 @@ class QuillToolbar extends StatefulWidget implements PreferredSizeWidget {
bool showListBullets = true, bool showListBullets = true,
bool showCodeBlock = true, bool showCodeBlock = true,
bool showQuote = true, bool showQuote = true,
bool showIndentIncrease = true, bool showIndent,
bool showIndentDecrease = true,
bool showLink = true, bool showLink = true,
bool showHistory = true, bool showHistory = true,
bool showHorizontalRule = false, bool showHorizontalRule = false,
@ -830,7 +829,7 @@ class QuillToolbar extends StatefulWidget implements PreferredSizeWidget {
), ),
), ),
Visibility( Visibility(
visible: showIndentIncrease, visible: showIndent,
child: IndentButton( child: IndentButton(
icon: Icons.format_indent_increase, icon: Icons.format_indent_increase,
controller: controller, controller: controller,
@ -838,7 +837,7 @@ class QuillToolbar extends StatefulWidget implements PreferredSizeWidget {
), ),
), ),
Visibility( Visibility(
visible: showIndentDecrease, visible: showIndent,
child: IndentButton( child: IndentButton(
icon: Icons.format_indent_decrease, icon: Icons.format_indent_decrease,
controller: controller, controller: controller,

Loading…
Cancel
Save