I am using an onChange
method in a TextFormField
widget... but is there a onLeave
function on another parent widget.... I looked into GestureDetector
but they also don't have it
TextFormField(
controller: _emailAddress_controller,
keyboardType: TextInputType.emailAddress,
validator: validateEmail,
onChanged: (value) {
print(validateEmail(_emailAddress_controller.toString()));
},
)