color white change fillColor

pull/17/head
li3317 4 years ago
parent 505d7a47fd
commit fa891f1fc6
  1. 9
      lib/widgets/toolbar.dart

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

Loading…
Cancel
Save