Answers for "flutter imput"

1

flutter imput

TextFormField(
	decoration: const InputDecoration(
		hintText: 'Email',
    ),
	validator: (value) {
		if(value.isEmpty) {
			return 'Preencha os campos!';
		}
		return null;
	},
),
Posted by: Guest on March-12-2021

Browse Popular Code Answers by Language