-
-
Notifications
You must be signed in to change notification settings - Fork 542
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No way to close keyboard when using FormBuilderTextField on iOS #253
Comments
You can add a |
Use Listener on top of MaterialApp.
|
@daniel-draper this issue is solved? |
Due to lack of response and an old error, I will close this issue. |
There looks to be no done button on an iOS keyboard when using the FormBuilderTextField, meaning that there is no way to remove the keyboard once it has popped up. This is happening when using the default keyboard type as well as other keyboard types.... This does work fine on android. Any idea why this is or if I am missing something?
FormBuilderTextField( controller: myController, attribute: "anAttribute", validators: [ FormBuilderValidators.required() ], //keyboardType: TextInputType.number, decoration: inputDecoration(labelText: "A textfield"), ),
The text was updated successfully, but these errors were encountered: