Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I change the color of several words in the TextField Widget?

Tags:

flutter

Im trying to do chat mentions and I need to some how change the color of full name that mentioned in the TextField before send the message.

How can I do that?

like image 873
Babken Avatar asked Sep 13 '25 23:09

Babken


1 Answers

Hope i'm not too late :) I had the same issue and couldn't find any implementation in the main flutter package or any third party packages, so i hacked a little packaage and uploaded it. it's an extension of the text editing controller that you can supply with a map of Regex patterns and corresponding Text style.

https://pub.dev/packages/rich_text_controller

https://github.com/micwaziz/rich_text_controller

like image 101
Michael Aziz Avatar answered Sep 16 '25 23:09

Michael Aziz