Fix toolbar dividers condition (#1362)

pull/1367/head
Miloš Karakaš 2 years ago committed by GitHub
parent 887fd8d8ac
commit c00b555b07
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 10
      lib/src/widgets/toolbar.dart

@ -175,11 +175,11 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget {
showBackgroundColorButton ||
showClearFormat ||
embedButtons?.isNotEmpty == true,
showAlignmentButtons || showDirection,
showLeftAlignment,
showCenterAlignment,
showRightAlignment,
showJustifyAlignment,
showLeftAlignment ||
showCenterAlignment ||
showRightAlignment ||
showJustifyAlignment ||
showDirection,
showHeaderStyle,
showListNumbers || showListBullets || showListCheck || showCodeBlock,
showQuote || showIndent,

Loading…
Cancel
Save