From 4994e2a340a0c2fa2c81dc3ef5d53361df7500f1 Mon Sep 17 00:00:00 2001 From: li3317 Date: Wed, 23 Dec 2020 16:55:25 -0500 Subject: [PATCH] background color toolbar --- app/lib/widgets/demo_scaffold.dart | 1 - lib/widgets/toolbar.dart | 60 +++++++++++++++++++++++++++++- 2 files changed, 58 insertions(+), 3 deletions(-) diff --git a/app/lib/widgets/demo_scaffold.dart b/app/lib/widgets/demo_scaffold.dart index a2ae3918..8e0b749b 100644 --- a/app/lib/widgets/demo_scaffold.dart +++ b/app/lib/widgets/demo_scaffold.dart @@ -37,7 +37,6 @@ class _DemoScaffoldState extends State { QuillController _controller; bool _loading = false; - bool _canSave = false; @override void didChangeDependencies() { diff --git a/lib/widgets/toolbar.dart b/lib/widgets/toolbar.dart index 7bf5903e..7700ad6f 100644 --- a/lib/widgets/toolbar.dart +++ b/lib/widgets/toolbar.dart @@ -455,6 +455,62 @@ class _ColorButtonState extends State { } } +/// Controls background color styles. +/// +/// When pressed, this button displays overlay toolbar with +/// buttons for each color. +class BackgroundColorButton extends StatefulWidget { + final IconData icon; + + final QuillController controller; + + BackgroundColorButton({Key key, @required this.icon, @required this.controller}) + : assert(icon != null), + assert(controller != null), + super(key: key); + + @override + _BackgroundColorButtonState createState() => _BackgroundColorButtonState(); +} + +class _BackgroundColorButtonState extends State { + @override + Widget build(BuildContext context) { + final theme = Theme.of(context); + final iconColor = theme.iconTheme.color; + final fillColor = theme.canvasColor; + return QuillIconButton( + highlightElevation: 0, + hoverElevation: 0, + size: 32, + icon: Icon(widget.icon, size: 18, color: iconColor), + fillColor: fillColor, + onPressed: _showColorPicker, + ); + } + + void _changeColor(Color color) { + widget.controller + .formatSelection(BackgroundAttribute('#${color.value.toRadixString(16)}')); + Navigator.of(context).pop(); + } + + _showColorPicker() { + showDialog( + context: context, + child: AlertDialog( + title: const Text('Select Color'), + content: SingleChildScrollView( + child: MaterialPicker( + pickerColor: Color(0), + onColorChanged: _changeColor, + ), + )), + ); + } +} + + class QuillToolbar extends StatefulWidget implements PreferredSizeWidget { final List children; @@ -524,8 +580,8 @@ class QuillToolbar extends StatefulWidget implements PreferredSizeWidget { SizedBox(width: 1), Visibility( visible: showBackgroundColorButton, - child: ToggleStyleButton( - attribute: BackgroundAttribute('#ffffff'), + child: BackgroundColorButton( + // attribute: BackgroundAttribute('#ffffff'), icon: Icons.format_color_fill, controller: controller, ),