onChanged property
Use this parameter to listen for the changes on every key press.
Example :
ProTextField(
onChanged: (text) {
print(text);
},
)
Implementation
final ValueChanged<dynamic>? onChanged;
Use this parameter to listen for the changes on every key press.
Example :
ProTextField(
onChanged: (text) {
print(text);
},
)
final ValueChanged<dynamic>? onChanged;