-
-
Notifications
You must be signed in to change notification settings - Fork 165
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
grab all input devices #298
Comments
And how do I use it? Since the latest Binary update to Flutter 3.3.7 the keyboard input doesn't work anymore in my Flutter App. It only appears in the console. |
@niklasbartsch Should work OOB. If it doesn't, could be libinput exposes your keyboard as both a key and pointer device, and at least in the master branch, that case isn't handled correctly yet. Though it's handled correctly on the |
Still doesn't work, event with the |
@niklasbartsch That's a bug then, can you run Also please open a new issue for that (and post the logs there) |
I opened the Issue #304. |
I know, it's really annoying when the keyboard inputs also appear on the console. In my case, I create an autorun script to run my app. So I can use |
use
EVIOCGRAB
to grab all input devices for exclusive use.otherwise, if people have a keyboard attached and a console running, the keyboard can be used to enter things on the console.
See discussion in #256
The text was updated successfully, but these errors were encountered: