HighlightText(
'Only numbers: [1, 25, 50, ...] will be highlighted',
// would highlight only numbers.
highlight: const Highlight(pattern: r'\d'),
)
HighlightText(
"Hello, Flutter!",
// Would highlight only the "Flutter" full word 'cause [detectWords] is enabled.
highlight: const Highlight(
words: ["Flutter"],
),
caseSensitive: true, // Turn on case-sensitive.
detectWords: true, // Turn on full-word-detection.
style: const TextStyle(
fontSize: 25,
color: Colors.black,
fontWeight: FontWeight.bold,
),
highlightStyle: const TextStyle(
fontSize: 25,
letterSpacing: 2.5,
color: Colors.white,
backgroundColor: Colors.blue,
fontWeight: FontWeight.bold,
),
)