Можно ли сделать мой текст нормальным, то есть без пробелов между словами? Есть ли способ обернуть слова в следующую строку, разделив их?
снимок экрана
желаемый результат
Это код моего текстового раздела.
Widget textSection({String leadingTitle, String title, String content, BuildContext context}) {
return Row(
children: <Widget>[
Material(
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(5.0)),
color: Colors.red,
child: Container(
padding: EdgeInsets.all(5.0),
child: Text(leadingTitle,
style: TextStyle(
color: Colors.white,
fontWeight: FontWeight.bold,
fontSize: 18.0)),
),
),
SizedBox(
width: 10.0,
),
Expanded(
child: Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
children: <Widget>[
Text(
text: content,
textAlign: TextAlign.justify,
style: TextStyle(
fontFamily: 'verdana', color: Colors.black, fontSize: 14),
)
],
),
)
],
);
}