Solucão para o desafio
Text.rich(
TextSpan(
text: 'Oie, ',
style: TextStyle(fontWeight: FontWeight.bold),
children: <TextSpan>[
TextSpan(text: 'mundo Flutter', style: TextStyle(fontWeight: FontWeight.normal, fontStyle: FontStyle.italic))
]
),
)