materialMisspelledTextStyle constant
The TextStyle used to indicate misspelled words in the Material style.
See also:
- SpellCheckConfiguration.misspelledTextStyle, the style configured to mark misspelled words with.
- CupertinoTextField.cupertinoMisspelledTextStyle, the style configured to mark misspelled words with in the Cupertino style.
Implementation
static const TextStyle materialMisspelledTextStyle =
TextStyle(
decoration: TextDecoration.underline,
decorationColor: Colors.red,
decorationStyle: TextDecorationStyle.wavy,
);