я вижу этот код для расширенного текста во флаттере:
return Row(
children: <Widget>[
?
Container(
child: RichText(
text: TextSpan(
text: "Hello",
style: TextStyle(fontSize: 20.0,color: Colors.black),
children: <TextSpan>[
TextSpan(text:"Bold"),
style: TextStyle( fontSize: 10.0, color: Colors.grey),
),
],
),
),
)
этот отпечаток
Hellobold
но мне нужно разделить оба текста: один на другой, слева на другой, как этот
Hello bold
как мне это сделать?
спасибо