I want to show an icon in text widget. How do I do this ?
The following code only shows the IconData
IconData
Text(\"Click ${Icons.add} to add\"
Row Widget can be one solution for this issue, but you have to use different widgets to make it happen.
Follow below example.
Row( children: [ Text("Hi"), Icon(Icons.add), Text("Hello") ] )