Flutter Text overflow



画像のように、内容が長いので、自動的に複数行に追加したいのですが...
使い方.
伝統的に、
Row(
          mainAxisAlignment: MainAxisAlignment.start,
          children: [
            Helper().horizontalSpace(0.06),
 	    Helper().basicStyleText(
                  AppLocalization.of(context)!.levelRewardCompensation),
            Helper().horizontalSpace(0.06),
          ],
        ),
これは上記の形式のコードです.
テキスト部分をExpandedで包むと、自然に複数行のテキストが表示されます.
 Row(
          mainAxisAlignment: MainAxisAlignment.start,
          children: [
            Helper().horizontalSpace(0.06),
            Expanded(
              child: Helper().basicStyleText(
                  AppLocalization.of(context)!.levelRewardCompensation),
            ),
            Helper().horizontalSpace(0.06),
          ],
        ),

英语などの翻訳は...パパゴに訳して入れた部分はははは.