flutter 输入框错误提示
TextField(
decoration: InputDecoration(
// 提示文本
hintText: "请输入姓名",
// 错误提示
errorText: '该参数不能为空'
),
)
TextField(
decoration: InputDecoration(
// 提示文本
hintText: "请输入姓名",
// 错误提示
errorText: '该参数不能为空'
),
)