gpt4 book ai didi

fonts - 如何在 Flutter 中居中对齐文本?

转载 作者:IT王子 更新时间:2023-10-29 07:19:41 24 4
gpt4 key购买 nike

预期输出:

I want the output to be like this.

我当前的输出:

Currently it's like this

当前输出的代码:

subtitle: Center(child: Text(
"Hello, my name is Sam \n I am new here.",
style: TextStyle(fontSize: 18, color: Colors.white),
),
),

最佳答案

您可以使用属性 textAlign 设置 Text 对齐方式:

Text(
"Hello, my name is Sam \n I am new here.",
textAlign: TextAlign.center,
style: TextStyle(fontSize: 18, color: Colors.white),
);

关于fonts - 如何在 Flutter 中居中对齐文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56230654/

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