0

I have just started to learn flutter in vscode. But the error line backgrounds doesn't look good. Are there any way to close them? Here is the example: enter image description here

Efe Şafak
  • 25
  • 4

1 Answers1

1

You can change the background of an error via the editorError.background property within workbench.colorCustomizations:

"workbench.colorCustomizations": {
        "editorError.background": "#00AA00"
    }

The above is a bright green, and looks like this:

enter image description here

If you mean the squiggly underline, the property is editorError.foreground.

Timothy G.
  • 6,335
  • 7
  • 30
  • 46