Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
314 views
in Technique[技术] by (71.8m points)

combined validation logic in Flutter form

I have a form which contains a number of TextFormField similar to this one:

                Container(
              alignment: Alignment.topCenter,
              width: halfMediaWidth-40,
              child: MyTextFormField(
                hintText: 'Food Name',
                validator: (String value) {
                  if (value.isEmpty) {
                    return 'Enter food name';
                  }
                  return null;
                },
                onSaved: (String value) {
                  model.name = value;
                },
              ),
            )

In the above widget, the validation is based on its own value. I have a scenario that the validation is to base on more than one TextFormField's value. For example, if the values of two TextFormFields' value are empty, then return error. How can this be accomplished?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You can pass an instance of TextEditingController to other form fields and then you can use those instances to get the value anytime. An example is here

var controller1 = TextEditingController();
var controller2 = TextEditingController(); 

//form field 1
MyTextFormField(
controller:controller1,   // passed controller 1
                hintText: 'Food Name',
                validator: (String value) {
                  if (value.isEmpty) {
                    return 'Enter food name';
                  }
                  return null;
                },
                onSaved: (String value) {
                  model.name = value;
                },
              ),
            ),
//form field 2
MyTextFormField(
controller:controller2, // passed controller 2
                hintText: 'Food Name',
                validator: (String value) {
        // you can use value like below to check value for formfield 1 like below
                  if (controller1.value.isEmpty && value.isEmpty) { 
                    return 'Enter food name';
                  }
                  return null;
                },
                onSaved: (String value) {
                  model.name = value;
                },
              ),
            )

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...