flutter-quill icon indicating copy to clipboard operation
flutter-quill copied to clipboard

The cursor moves forward when writing in languages ​​other than English.

Open Liebe97 opened this issue 1 year ago • 0 comments

Is there an existing issue for this?

Flutter Quill version

9.3.7

Steps to reproduce

The cursor moves forward when writing in languages ​​other than English. I would like the cursor to move to the back of the written text.

Expected results

cursor moves back

Actual results

Cursor moves forward

Code sample

Code sample
QuillEditor(
  scrollController: editorScrollController,
  focusNode: editorFocusNode,
  configurations: QuillEditorConfigurations(
    controller: quillController,
    sharedConfigurations: const QuillSharedConfigurations(
      locale: Locale('ko'),
    ),
    minHeight: 45,
    maxHeight: 128,
    enableSelectionToolbar: false,
    readOnly: false,
    customStyles: const DefaultStyles(
    paragraph: DefaultTextBlockStyle(
    TextStyle(
        color: Colors.black,
        fontSize: 14,
        fontFamily: 'NotoSansKR',
      ),
      VerticalSpacing(0, 0),
      VerticalSpacing(0, 0),
      null,
    ),
    ),
  ),
)

Screenshots or Video

Screenshots / Video demonstration

https://github.com/singerdmx/flutter-quill/assets/63777702/3ff87778-5f36-4cee-b18e-ad9abb42d7e6

Logs

Logs
[Paste your logs here]

Liebe97 avatar Apr 18 '24 08:04 Liebe97