I am trying to create a TextField Widget in Flutter App in which I want to allow the user to insert a text string like this:
USER-0123456789
In which the text USER (All Text before '-' character) should be in red color and other should be in black color.
Now the problem is that I don't know any method to do this. After some research, I found that I can do this with a normal Text Widget by using RichText Widget. But, I don't know any similar widget for TextField Widget. Please help me to come out of this situation.