Changes to default editor and toolbar values (#1438)

pull/1448/head
Milind Goel 1 year ago committed by GitHub
parent 988c41bfa6
commit 43d2043565
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 13
      lib/src/widgets/toolbar.dart

@ -66,6 +66,7 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget {
this.sectionDividerColor,
this.sectionDividerSpace,
this.linkDialogAction,
this.decoration,
Key? key,
}) : super(key: key);
@ -110,6 +111,9 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget {
bool showSuperscript = true,
List<QuillCustomButton> customButtons = const [],
/// The decoration to use for the toolbar.
Decoration? decoration,
///Map of font sizes in string
Map<String, String>? fontSizeValues,
@ -248,6 +252,7 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget {
key: key,
axis: axis,
color: color,
decoration: decoration,
toolbarSize: toolbarIconSize * 2,
toolbarSectionSpacing: toolbarSectionSpacing,
toolbarIconAlignment: toolbarIconAlignment,
@ -628,6 +633,9 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget {
/// The space occupied by toolbar section divider.
final double? sectionDividerSpace;
/// The decoration to use for the toolbar.
final Decoration? decoration;
@override
Size get preferredSize => axis == Axis.horizontal
? Size.fromHeight(toolbarSize)
@ -647,11 +655,14 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget {
children: children,
)
: Container(
decoration: decoration ??
BoxDecoration(
color: color ?? Theme.of(context).canvasColor,
),
constraints: BoxConstraints.tightFor(
height: axis == Axis.horizontal ? toolbarSize : null,
width: axis == Axis.vertical ? toolbarSize : null,
),
color: color ?? Theme.of(context).canvasColor,
child: ArrowIndicatedButtonList(
axis: axis,
buttons: children,

Loading…
Cancel
Save