Consider bellow image, I want to dynamically change the text color of part of the text based on the user input text (not the whole text) in a text field. How can i do that i
you can use simply style in Text Widget
Text("value",style: TextStyle(color: Colors.purple)),
or if you want to color a specific value in a line then use a row with multiple TextWidgets and give one of the color example
Row(children: [
Text("see this")),
Text("@tammyDelgado",style: TextStyle(color: Colors.purple)),
Text("Wonderfull")),
]),