|
|
@ -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, |
|
|
|