在 Flutter Text Widget 中调整新的行距
Posted
技术标签:
【中文标题】在 Flutter Text Widget 中调整新的行距【英文标题】:Adjust new line spacing in Flutter Text Widget 【发布时间】:2021-10-05 07:39:17 【问题描述】:所以,目标很简单,将一堆文本包装在一个容器中。 为此,我遵循了这个 Flutter- wrapping text ,但是创建的新行在前一行之间有太多空间。
我的 Container() 和 Text() 代码:
description == ""
? SizedBox.shrink()
: Container(
padding: const EdgeInsets.symmetric(horizontal: 10.0),
//width: MediaQuery.of(context).size.width * 0.8,
child: Column(
mainAxisAlignment: MainAxisAlignment.start,
children: [
new Text(
description,
textAlign: TextAlign.left,
style: TextStyle(fontSize: 18),
),
],
),
)
小提示:如果给 Parent 小部件提供了任何描述,我只是使用 SizeBox.shrink() 作为“空小部件”。
目前情况如何,空间太大:
应该如何:
我知道 1º 的图像更大,但这不是行距更大的原因 ????
【问题讨论】:
【参考方案1】:来自here。您可以通过更改样式内的height
属性来调整行距。 1.0 对我来说似乎很好,但您可以尝试将其设置为 0.8、0.7。
Container(
padding: const EdgeInsets.symmetric(horizontal: 10.0),
//width: MediaQuery.of(context).size.width * 0.8,
child: Column(
mainAxisAlignment: MainAxisAlignment.start,
children: [
new Text(
'You have pushed the button this many times: You have pushed the button this many times: You have pushed the button this many times: You have pushed the button this many times: You have pushed the button this many times: You have pushed the button this many times: You have pushed the button this many times:',
textAlign: TextAlign.left,
style: TextStyle(fontSize: 18, height: 1.0 ),
),
],
),),
【讨论】:
以上是关于在 Flutter Text Widget 中调整新的行距的主要内容,如果未能解决你的问题,请参考以下文章
Flutter Container Widget 和 Text Widget
Flutter,按下按钮后如何在Text Widget上粘贴数据?
在 Flutter 中通用将颜色设置为 App 中的 Text Widget,而无需每次都提及 Widget 内部的主题