background color toolbar

pull/13/head
li3317 4 years ago
parent 2ffc01ec29
commit 4994e2a340
  1. 1
      app/lib/widgets/demo_scaffold.dart
  2. 60
      lib/widgets/toolbar.dart

@ -37,7 +37,6 @@ class _DemoScaffoldState extends State<DemoScaffold> {
QuillController _controller; QuillController _controller;
bool _loading = false; bool _loading = false;
bool _canSave = false;
@override @override
void didChangeDependencies() { void didChangeDependencies() {

@ -455,6 +455,62 @@ class _ColorButtonState extends State<ColorButton> {
} }
} }
/// 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<BackgroundColorButton> {
@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 { class QuillToolbar extends StatefulWidget implements PreferredSizeWidget {
final List<Widget> children; final List<Widget> children;
@ -524,8 +580,8 @@ class QuillToolbar extends StatefulWidget implements PreferredSizeWidget {
SizedBox(width: 1), SizedBox(width: 1),
Visibility( Visibility(
visible: showBackgroundColorButton, visible: showBackgroundColorButton,
child: ToggleStyleButton( child: BackgroundColorButton(
attribute: BackgroundAttribute('#ffffff'), // attribute: BackgroundAttribute('#ffffff'),
icon: Icons.format_color_fill, icon: Icons.format_color_fill,
controller: controller, controller: controller,
), ),

Loading…
Cancel
Save