Skip to content
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

Close keyboard oncompleted #9

Closed
danish1023 opened this issue Apr 12, 2020 · 1 comment
Closed

Close keyboard oncompleted #9

danish1023 opened this issue Apr 12, 2020 · 1 comment

Comments

@danish1023
Copy link

How to close keyboard after entering the last digit automatically?

@awaik
Copy link
Owner

awaik commented Apr 13, 2020

We have onEditing property. So, when it false we can dismiss the onscreen keyboard. Like this:

            onEditing: (bool value) {
              setState(() {
                _onEditing = value;
              });
              if (!_onEditing) FocusScope.of(context).unfocus();
            },

@awaik awaik closed this as completed Apr 17, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants