【ご教示願い】flutterのテキスト折り返しについて
解決したいこと
初めてflutterを触ってますが、テキストの折り返しがうまくできません。
下記のコードで実装しておりますが、テキストが見切れていエラーが出てしまいます。
maxLinesとoverflowを指定しますが、こちらの原因がわかりません。
どうかわかりますでしょうか。。。。
該当するソースコード
child: Row(
children: [
Expanded(
child: Container(
height: 150,
decoration: BoxDecoration(color: Colors.yellow, border: Border.all(color: Colors.black, width: 0.5)),
child: Row(
children: [
Container(
margin: const EdgeInsets.all(10),
width: 150,
height: 150,
decoration: BoxDecoration(
border: Border.all(color: Colors.black, width: 0.5),
),
),
// TODO: 折り返す処理を加える
const Text(
"testtesttestttestttestttestttestttestttestttestttestttestttestttestttestttestttestttestttestttestttestttestttest",
style: TextStyle(fontSize: 20),
maxLines: 3,
overflow: TextOverflow.ellipsis,
),
],
),
),
),
],
),
0