Open alexeyinkin opened 2 years ago
Here we use onKey to set the listener on FocusNode: https://github.com/BertrandBev/code_field/blob/66d4e56f14bc0073cd967149a929c6b670ffc74c/lib/src/code_field/code_field.dart#L121
onKey
FocusNode
The doc says it is a legacy property and will be deprecated in the future. The recommended alternative is onKeyEvent.
onKeyEvent
Here we use
onKey
to set the listener onFocusNode
: https://github.com/BertrandBev/code_field/blob/66d4e56f14bc0073cd967149a929c6b670ffc74c/lib/src/code_field/code_field.dart#L121The doc says it is a legacy property and will be deprecated in the future. The recommended alternative is
onKeyEvent
.