flutter rich text
Text.rich(
TextSpan(
text: 'Hello', // default text style
children: [
TextSpan(text: ' beautiful ', style: TextStyle(fontStyle: FontStyle.italic)),
TextSpan(text: 'world', style: TextStyle(fontWeight: FontWeight.bold)),
],
),
)