gpt4 book ai didi

flutter - 设置两行文字之间的间距

转载 作者:行者123 更新时间:2023-12-03 03:59:56 24 4
gpt4 key购买 nike

我正在尝试在两行文本之间设置间距,但无法这样做。现在,这两条线是互相渲染的,但是我希望可以调整它们之间的间隔。我尝试使用Spacer小部件,但这会使间距太大。有一个更好的方法吗?

        Expanded(
child: Column(
children: <Widget>[
Text("We're finding your pizza.",
style: theme.textTheme.body1.copyWith(fontSize: 18)),
Text(
"We'll send you a notification.",
textAlign: TextAlign.center,
style: theme.textTheme.body1.copyWith(fontSize: 18)),
],
),
),

最佳答案

Spacer将占用剩余的所有可用空间,您可能不需要此空间。因此,您只需使用SizedBox小部件即可。

Text("One"),
SizedBox(height: 20), // use this
Text("Two"),

关于flutter - 设置两行文字之间的间距,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58047886/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com