[Web] Unable to write space or use key arrows #452
Replies: 4 comments 2 replies
-
You can disable space button https://stackoverflow.com/questions/65766557/flutter-web-disable-spacebar-to-scroll But doesnt work on latest version flutter. I think need to disable on quill editrors text_area like this
But i doesnt know how do it |
Beta Was this translation helpful? Give feedback.
-
Find best solution #304 Found a workaround: Wrap QuillEditor with a RawKeyboardListener to intercept KeyEvent and prevent it from propagating to parents.
|
Beta Was this translation helpful? Give feedback.
-
This was the solution, thanks. 👍 |
Beta Was this translation helpful? Give feedback.
-
Cheers for the workaround, it works. This should be in the editor itself so we don't have to take that in consideration. |
Beta Was this translation helpful? Give feedback.
-
My issue is about [Web].
When I try to write a space or use the keyboard arrows I have no response from the editor, but if I try to use this in a TextField or a TextFormField it works correctly.
This is my code:
I don't know if I'm missing something.
Thanks.
Beta Was this translation helpful? Give feedback.
All reactions