akvelon / flutter-code-editor

Flutter Code Editor is a multi-platform code editor supporting syntax highlighting, code blocks folding, autocompletion, read-only code blocks, hiding specific code blocks, themes, and more.

Home Page:https://akvelon.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Use theme colors in error message popups

alexeyinkin opened this issue · comments

Currently we have black-on-black in Playground light theme:

  1. Go to https://play-dev.beam.apache.org
  2. Delete any parentheses:

image

commented
  • Will be fixed in #223

Also, CodeField supports customization of colors in ErrorPopup by providing

gutterStyle: GutterStyle(
  errorPopupTextStyle: TextStyle(
    color: Colors.black,
    backgroundColor: Colors.white,
  ),
),