여러가지 style이 혼합된 Text위젯을 만들때 사용한다.

RichText(
text: TextSpan(
style: TextStyle(fontSize: 18),
children: [
TextSpan(text: 'Result: '),
TextSpan(
text: 'Normal',
style: TextStyle(
fontWeight: FontWeight.bold,
color: Theme.of(context).highlightColor,
),
),
TextSpan(text: ' (BMI 10-30)'),
],
),
)