desconexo / highlight_text

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

matchCase not working if false #24

Closed lauraldo closed 2 years ago

lauraldo commented 2 years ago

Text not matching pattern by case is not highlighted.

In highlight_text.dart, line 96, loop condition contains word.allMatches(text).length, which is case-sensitive.

desconexo commented 2 years ago

can you send me the text and words you're trying to highlight, please?

lauraldo commented 2 years ago

For example:

Text: "Security" Words: {"sec"}

desconexo commented 2 years ago

That's new for me. I didn't know it would work like that. I'll try to fix it this weekend.

desconexo commented 2 years ago

Actually, I just fixed it. But I'm not able to upload it to pub.dev any soon, so you'll need to import it from github

lauraldo commented 2 years ago

Great, thanks a lot!