预期输出:
我当前的输出:
当前输出的代码:
subtitle: Center(child: Text(
"Hello, my name is Sam \n I am new here.",
style: TextStyle(fontSize: 18, color: Colors.white),
),
),
答案 0 :(得分:1)
您可以使用属性Text
来设置textAlign
对齐方式:
Text(
"Hello, my name is Sam \n I am new here.",
textAlign: TextAlign.center,
style: TextStyle(fontSize: 18, color: Colors.white),
);
答案 1 :(得分:0)
使用textAlign。
subtitle: Center(child: Text(
"Hello, my name is Sam \n I am new here.",
textAlign: TextAlign.center,
style: TextStyle(fontSize: 18, color: Colors.white),
),
),