Closed
Description
Is there an existing issue for this?
- I have searched the existing issues
The question
Tried this on Web and MacOS using flutter_quill 9.4.4, but didn't work for me.
Am I doing something wrong?
_controller = QuillController(
document: delta,
selection: const TextSelection.collapsed(offset: 0),
readOnly: true,
);
return QuillEditor.basic(
configurations: QuillEditorConfigurations(
controller: _controller,
scrollable: false,
enableInteractiveSelection: false,
readOnlyMouseCursor: SystemMouseCursors.grab,
),
);