01hana
@01hana

Are you sure you want to delete the question?

Leaving a resolved question undeleted may help others!

【ご教示願い】flutterのテキスト折り返しについて

Q&A

Closed

解決したいこと

初めてflutterを触ってますが、テキストの折り返しがうまくできません。
下記のコードで実装しておりますが、テキストが見切れていエラーが出てしまいます。
maxLinesとoverflowを指定しますが、こちらの原因がわかりません。
どうかわかりますでしょうか。。。。

スクリーンショット 2023-02-06 22.07.31.png

該当するソースコード

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

No Answers yet.

Your answer might help someone💌