gpt4 book ai didi

user-interface - Flutter - 找不到 TextField "textAlign"属性

转载 作者:IT老高 更新时间:2023-10-28 12:46:28 25 4
gpt4 key购买 nike

我有这个基本的文本字段:

          new TextField(
style: new TextStyle(fontSize: 20.0, color: Colors.blue),
onChanged: (InputValue newInputValue) {
setState(() {
inputValue = newInputValue;
});
}),

我现在想让文本在用户输入内容时 float 到中心。所以我去了文档,它告诉我使用 textAlign 属性。

              new TextField(
textAlign: TextAlign.center;
style: new TextStyle(fontSize: 20.0, color: Colors.blue),
onChanged: (InputValue newInputValue) {
setState(() {
inputValue = newInputValue;
});
}),

但由于某种原因,Flutter 告诉我 TextAlign 属性不存在。

最佳答案

我只需要升级 Flutter 就可以了。最近添加了 TextAlign...

关于user-interface - Flutter - 找不到 TextField "textAlign"属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43706460/

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