materialMisspelledTextStyle constant

TextStyle const materialMisspelledTextStyle

The TextStyle used to indicate misspelled words in the Material style.

See also:

Implementation

static const TextStyle materialMisspelledTextStyle =
  TextStyle(
    decoration: TextDecoration.underline,
    decorationColor: Colors.red,
    decorationStyle: TextDecorationStyle.wavy,
  );