From bed3787aa9a2920890b51edc07c6ae56c1c0af03 Mon Sep 17 00:00:00 2001 From: Vladimir <37017173+VladimirKaroyan@users.noreply.github.com> Date: Wed, 16 Aug 2023 22:20:30 +0400 Subject: [PATCH] Update raw_editor.dart for compatibility with Flutter version 3.13.0 --- lib/src/widgets/raw_editor.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/src/widgets/raw_editor.dart b/lib/src/widgets/raw_editor.dart index 2b3ba326..5822d43b 100644 --- a/lib/src/widgets/raw_editor.dart +++ b/lib/src/widgets/raw_editor.dart @@ -350,6 +350,7 @@ class RawEditorState extends EditorState List get contextMenuButtonItems { return EditableText.getEditableButtonItems( clipboardStatus: _clipboardStatus.value, + onLiveTextInput: null, onCopy: copyEnabled ? () => copySelection(SelectionChangedCause.toolbar) : null,