I'm trying to build an instagram clone and I want if the user tags someone in the comments, the tag text should appear blue (as in real Instagram). Example. I've used regex to recognise the tags from the text but can't figure out how to color them as the user can place a tag anywhere in the comment. I tried using RichText
widget along with TextSpan
but quickly realised it was way too hardcoded. Is there any direct and easy way for this situation?
PS: Sorry for the bad title...
To achieve this first create a list of strings:
Then create a function that will recognize when someone is tagged:
Then use this function inside TextField's onChange method:
This will put tags inside
_tags
list. When you use this list, use it like below: