我onChange
在一个小部件中使用一个方法TextFormField
......但是另一个父小部件上是否有一个onLeave
函数......我调查了GestureDetector
但他们也没有它
TextFormField(
controller: _emailAddress_controller,
keyboardType: TextInputType.emailAddress,
validator: validateEmail,
onChanged: (value) {
print(validateEmail(_emailAddress_controller.toString()));
},
)