desconexo / highlight_text

A flutter plugin to highlight words from a text
MIT License
30 stars 22 forks source link

fix: prevent performance degradation with empty search queries #54

Closed oriventi closed 3 months ago

oriventi commented 3 months ago

This commit addresses a critical performance issue where empty or whitespace-only search queries in the TextHighlight widget were causing excessive creation of MatchedElement instances. The fix includes:

Performance improvements:

Also includes additional unit tests to prevent regression and ensure proper handling of edge cases.

Fixes #51