diff --git a/lib/widgets/toolbar.dart b/lib/widgets/toolbar.dart index 0a340470..669fc340 100644 --- a/lib/widgets/toolbar.dart +++ b/lib/widgets/toolbar.dart @@ -567,6 +567,7 @@ class ColorButton extends StatefulWidget { class _ColorButtonState extends State { String colorHex; + bool isWhite = false; @override Widget build(BuildContext context) { final theme = Theme.of(context); @@ -578,8 +579,8 @@ class _ColorButtonState extends State { size: iconSize * 1.77, icon: Icon(widget.icon, size: iconSize, - color: colorHex == null ? iconColor : fromHex(colorHex)), - fillColor: fillColor, + color: colorHex == null || isWhite ? iconColor : fromHex(colorHex)), + fillColor: isWhite ? fromHex(colorHex) : fillColor, onPressed: _showColorPicker, ); } @@ -590,8 +591,12 @@ class _ColorButtonState extends State { hex = hex.substring(2); } hex = '#$hex'; + print(hex); setState(() { colorHex = hex; + if (colorHex == "#ffffff") { + isWhite = true; + } }); widget.controller.formatSelection( widget.background ? BackgroundAttribute(hex) : ColorAttribute(hex));