Все, что мне нужно, это чтобы мой текст был многострочным. Я даю свойство maxLines, но оно все равно получает сообщение об ошибке переполнения RenderFlex справа, поскольку следующая строка не переходит во вторую строку,
Align( alignment: Alignment.bottomCenter,
child: new ButtonBar(
alignment: MainAxisAlignment.center,
children: [
Padding(
padding: EdgeInsets.all(20.0),
child: new Text(
"This is a very bigggggggg text !!!",textDirection: TextDirection.ltr,
style: new TextStyle(fontSize: 20.0, color: Colors.white),
maxLines: 2,
),
)
],
),
)
Подробнее здесь: https://stackoverflow.com/questions/538 ... e-for-text