onChanged property
Use this parameter to listen on change/key press.
Example :
ProTextFormField(
onChanged: (text) {
print(text);
},
)
Implementation
final ValueChanged<String>? onChanged;
Use this parameter to listen on change/key press.
Example :
ProTextFormField(
onChanged: (text) {
print(text);
},
)
final ValueChanged<String>? onChanged;