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