Reputation: 1934
The flutter TextFormField has an example,
it says
this example shows how to move the focus to the next field when the user presses the ENTER key.
but when I press the ENTER, it doesn't work, is this a bug of flutter or Am I missing something?
Upvotes: 0
Views: 64
Reputation: 573
The LogicalKeyboardKey.enter
will stand true for mobiles and other android and Ios based keyboards. While in Your pc the functionality can be achieved by tab
key.
Upvotes: 2