-
Notifications
You must be signed in to change notification settings - Fork 950
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Have you checked for an existing issue?
- I have searched the existing issues
Flutter Quill Version
11.4.1
Steps to Reproduce
Text input works fine across mobile devices - on web, the focus node registers the focus but text input does nothing at all;
return Scaffold(
body: QuillEditor.basic(
focusNode: _editorFocus,
scrollController: ScrollController(),
configurations: QuillEditorConfigurations(
minHeight: 300,
controller: QuillController.basic(),
showCursor: true,
),
),
);
EDIT: I have tried it stripped down in a simple MaterialApp too, same problem - text input does not register.
I stripped back my code to a basic configuration and its still doing the same. No matter what I tried, I have zero input on web
This is affecting a production web app and urgent.
Expected results
I should simply be able to type and it register
Actual results
QuillEditor.basic will focus, the cursor blinks but when typing on web, nothing changes
Additional Context
Zero errors or logs to produce
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working