highlightable 1.0.3
highlightable: ^1.0.3 copied to clipboard
A text widget that makes it easy to highlight any letter/word you want
1.0.3 (18/10/21) #
- Resolved #6 (Added case sensitive support)
Example:
HighlightText(
"Hello, Flutter!",
highlightableWord: "flu, He",
caseSensitive: true // Turn on case-sensitive. (as default it's false "disabled").
),
1.0.2 (15/08/21) #
- Added
detectWordproperty to focus on concrete matcher words
Example:
HighlightText(
"Hello, Flutter!",
highlightableWord: "flu, He",
detectWords: true,
defaultStyle: ...
highlightStyle: ...
),
1.0.1 (11/08/21) #
- Fixed lower/upper case matching problem