Keyboard disappears after upgrade to Flutter 2.5.0
After upgrading to Flutter 2.5.0, when clicking the ChipsInput widget I'm only able to enter one character at a time before the keyboard disappears. This worked before upgrading to Flutter 2.5.0.
Above has been tested on iOS devices (Simulator and Iphone 11)
Having the same Issue. Did you find a workaround?
same issue here, we had to revert to Flutter 2.2, waiting for a fix
for now I am using this version:
flutter_chips_input:
git:
url: https://github.com/jorelkimcruz/flutter_chips_input.git
ref: fix_backspace_not_working_for_android_devices
I created #99 as an attempt to fix this issue. If anyone wants to test it, you can use this config in pubspec.yaml:
flutter_chips_input:
git:
url: https://github.com/SocialStrata/flutter_chips_input.git
ref: fix_ios_focus_issue
I created #99 as an attempt to fix this issue. If anyone wants to test it, you can use this config in
pubspec.yaml:flutter_chips_input: git: url: https://github.com/SocialStrata/flutter_chips_input.git ref: fix_ios_focus_issue
A couple of items I noticed in testing:
- Keyboard doesn't adhere to dark mode selection of device
- Cursor doesn't show in input field
- Sometimes when the field is just below an app bar, the suggestions display above the field instead of below and the app bar hides/obscures the suggestions or they are off screen.
Not sure if these findings are all related to your changes or not but thought I would pass them along.
@dominicbvm, yeah, I don't believe any of those would have anything to do with my change.
@brianlenz thank you very much! it seems to work for
I created #99 as an attempt to fix this issue. If anyone wants to test it, you can use this config in
pubspec.yaml:flutter_chips_input: git: url: https://github.com/SocialStrata/flutter_chips_input.git ref: fix_ios_focus_issue
When will this be merged in the official version? We cannot use the quick fix version with Flutter 3+, and v2.0.0 is still buggy on iOS.