我有这个基本的文本字段:
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/