【发布时间】:2021-04-25 14:08:08
【问题描述】:
Container(
child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 60),
child: Text(
// subCategoryName,
"This is a very Long Text takes more space",
textAlign: TextAlign.center,
maxLines: 2,
overflow: TextOverflow.fade,
style: Theme.of(context)
.textTheme
.headline3
.copyWith(color: Colors.white, fontSize: 32),
),
),
),
如果文本变得更长,我需要此行最多为两行,并像 FittedBox(使用 BoxFit.fitWidth)一样缩小尺寸
当我使用 FittedBox 时,它看起来像 like this。但如果需要,我需要将它增加到 2 行。任何解决方案都值得赞赏
【问题讨论】:
-
或许this package可以帮到你
标签: flutter fitted-box