文章目录
基本属性
TextField
InputDecoration
样式
基础样式
隐藏文本
键盘类型
键盘按钮
大小写
光标
最多行数
计数器
图标
提示文字
去除下划线
边框
获取输入内容
关闭软键盘...this.enabled,//是否可用
this.cursorWidth = 2.0,//光标宽度
this.cursorRadius,//光标圆角
this.cursorColor,//光标颜色...this.counterText,//计数文字
this.counterStyle,//计数样式
this.filled,//是否填充
this.fillColor,//填充颜色...: InputDecoration(
errorText: "你没有输入任何内容",
),
),
去除下划线...TextField(
decoration: InputDecoration.collapsed(hintText: "无下划线的输入框")