Answers for "create form in flutter"

3

flutter form

final GlobalKey<FormState> _formKey = GlobalKey<FormState>();
Form(
      key: _formKey,
      child: Column(
        crossAxisAlignment: CrossAxisAlignment.center,
        children: <Widget>[
          TextFormField(
            decoration: const InputDecoration(
              hintText: 'Enter your email',
            ),
          ),
          ElevatedButton(
            onPressed: () {  },
            child: const Text('Submit'),
          ),
        ],
      ),
    ),
Posted by: Guest on August-30-2021
2

create a validator in flutter

TextFormField(
  // The validator receives the text that the user has entered.
  validator: (value) {
    if (value.isEmpty) {
      return 'Please enter some text';
    }
    return null;
  },
);
Posted by: Guest on November-19-2020
1

create a validator in flutter

ElevatedButton(
  onPressed: () {
    // Validate returns true if the form is valid, otherwise false.
    if (_formKey.currentState.validate()) {
      // If the form is valid, display a snackbar. In the real world,
      // you'd often call a server or save the information in a database.

      Scaffold
          .of(context)
          .showSnackBar(SnackBar(content: Text('Processing Data')));
    }
  },
  child: Text('Submit'),
);
Posted by: Guest on November-19-2020

Code answers related to "Dart"

Browse Popular Code Answers by Language