var blackText = 'black_text';
var coloredText = 'colored text';
RichText(
text: TextSpan(
text: 'Hello ',
style: DefaultTextStyle.of(context).style,
children: <TextSpan>[
TextSpan(text: blackText, style: TextStyle(color:
Colors.black)),
TextSpan(text: coloredText, style: TextStyle(color:
Colors.red)),
],
),
);