Closed yj-abe closed 6 months ago
Column( children: [ TextFormField( textInputAction: TextInputAction.next, ), TypeAheadField<String>( direction: VerticalDirection.up, itemBuilder: (context, value) { return Text(value); }, onSelected: (value) {}, suggestionsCallback: (search) { return ['test']; }, ), ], ),
next
Focus moves to next TypeAheadField.
TypeAheadField is not focused. If I set direction of TypeAheadField to VerticalDirection.down, it works fine.
direction
5.1.0
Android, iOS
Reproducible on 5.2.0
This issue is most likely related to #579 and will be fixed when the changes there are implemented. Please follow that issue instead. Thank you!
Steps to reproduce
next
button on the keyboard.Expected results
Focus moves to next TypeAheadField.
Actual results
TypeAheadField is not focused. If I set
direction
of TypeAheadField to VerticalDirection.down, it works fine.Package Version
5.1.0
Platform
Android, iOS
Code sample
Code sample
```dart Column( children: [ TextFormField( textInputAction: TextInputAction.next, ), TypeAheadFieldLogs
Logs
nothingScreenshots or Video
Screenshots / Video demonstration
nothing