在textformfieldflutter中为提示和错误文本分隔内容填充



是否有任何方法可以在TextFormField中单独控制错误文本和提示文本的填充?如果没有,我们如何在TextFormField下面做一个自定义的和独立的错误文本小部件。

试试这个,如果对你有帮助的话

class CustomTextFormFiled extends StatefulWidget {
const CustomTextFormFiled({Key key}) : super(key: key);
@override
_CustomTextFormFiledState createState() => _CustomTextFormFiledState();
}
class _CustomTextFormFiledState extends State<CustomTextFormFiled> {
bool isError = false;
@override
Widget build(BuildContext context) {
return Column(
children: [
TextFormField(
onSaved: (value){

if(value.isEmpty){
isError=true;

}
},


),
if(isError)...{
const Padding(
padding: EdgeInsets.all(10),
child: Text("Error Details"),
)
}
],
);
}
}

相关内容

  • 没有找到相关文章

最新更新