-
Notifications
You must be signed in to change notification settings - Fork 282
Feature/key events #140
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
Feature/key events #140
Conversation
7317800
to
df9e57f
Compare
Great feature! Some small suggestions but the rest looks good to add as experimental feature. Perhaps add a bit to the README about how this is still experimental and what is/is not supported. |
3f44fbb
to
a747735
Compare
GLFW's keyCodes are natively supported by the Flutter framework. Only |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One spelling mistake in a comment and a remark about the textChannel name. Maybe those changes can be applied before merging! Otherwise looks good to merge! 🎉
Uses the the RawKeyEventDataLinux for every platform. RawKeyEventDataLinux is the only Flutter implementation that support the GLFW Toolkit, the events data is sended as it is, no translation is made in go-flutter, everything is handled by the Flutter framework.
a747735
to
b7e982a
Compare
Changes applied! |
First draft of RawKeyboard events support. Only supporting the Android Keymap (and there is a major workaround), consider this as a preview feature.fixes #136,
we'll need new issue/PR to address the workaround.