From fa891f1fc67e356167238e39b57b84f76cac3554 Mon Sep 17 00:00:00 2001 From: li3317 Date: Sun, 7 Feb 2021 17:39:32 -0500 Subject: [PATCH] color white change fillColor --- lib/widgets/toolbar.dart | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) 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));