Flutter - 未找到 TextField "textAlign" 属性
Flutter - TextField "textAlign" property not found
我有这个基本的文本字段:
new TextField(
style: new TextStyle(fontSize: 20.0, color: Colors.blue),
onChanged: (InputValue newInputValue) {
setState(() {
inputValue = newInputValue;
});
}),
我现在想让文本在用户输入内容时浮动到中心。所以我去看了文档,它告诉我使用 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...
我有这个基本的文本字段:
new TextField(
style: new TextStyle(fontSize: 20.0, color: Colors.blue),
onChanged: (InputValue newInputValue) {
setState(() {
inputValue = newInputValue;
});
}),
我现在想让文本在用户输入内容时浮动到中心。所以我去看了文档,它告诉我使用 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...