how to format certain parts of text from api in flutter
I have a text from API, but I want to format it to be bold before displayed to the screen. Here is the code return Column( crossAxisAlignment: CrossAxisAlignment.start, mainAxisSize: MainAxisSize.min, children: [ Text( state.listExplanation[index].description!, --> this is the text that…