singerdmx / flutter-quill

Rich text editor for Flutter

Home Page:https://pub.dev/packages/flutter_quill

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

Liebe97 opened this issue · 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
bandicam.2024-04-18.16-58-32-122.mp4

Logs

Logs
[Paste your logs here]