substring_highlight icon indicating copy to clipboard operation
substring_highlight copied to clipboard

Simple Flutter text highlighting at the character-level.

Results 11 substring_highlight issues
Sort by recently updated
recently updated
newest added

This change resolves #21 by adding the diacritic package Signed-off-by: Miguel Carrizo [[email protected]](mailto:[email protected])

for example ```dart SubstringHighlight( text: 'txt_agreement'.tr, terms: [ 'txt_terms_conditions'.tr, 'txt_privacy_policy'.tr, ], textAlign: TextAlign.center, textStyle: Get.textTheme.headline2!.copyWith( fontSize: 12, fontWeight: FontWeight.w400, letterSpacing: 0, ), textStyleHighlight: Get.textTheme.bodyText2!.copyWith( fontSize: 12, fontWeight: FontWeight.w400, letterSpacing: 0,...

This pull request adds support to ignore diacritics: when the `ignoreDiacritics` option is enabled, `'e'` will match `'é'` or `'è'` etc...

Search are usually case-insensitive and diacritic-insensitive. For example the search term "e" matches "e", "è", "ê"... It would be nice to have an option `ignoreDiacritics` to highlight diacritics parts when...

Hello. For my use case, I'm looking up names in a list. Therefore, my search term can be multiple words matched to the list in any order. In other words,...

Add possibility to use softWrap param so we can achieve better behavior when using maxLines and overflow fade

Sometimes user needs to select text.

Text = A quick brown fox Search Term = qui How to highlight complete "quick" word?

Hi if the text is too long but the highlighted word is at the end of the line, can I shorten the first paragraph to go to the highlighted word?