From d6465b64d8c8aabeb672a079ff4f6fe6e80d9ecb Mon Sep 17 00:00:00 2001 From: Vladimir <37017173+VladimirKaroyan@users.noreply.github.com> Date: Wed, 16 Aug 2023 22:19:29 +0400 Subject: [PATCH] Update editor.dart for compatibility with Flutter version 3.13.0 --- lib/src/widgets/editor.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/src/widgets/editor.dart b/lib/src/widgets/editor.dart index fb1e495f..8c73cd81 100644 --- a/lib/src/widgets/editor.dart +++ b/lib/src/widgets/editor.dart @@ -42,6 +42,8 @@ abstract class EditorState extends State String get pastePlainText; + bool get liveTextInputEnabled => false; + /// Controls the floating cursor animation when it is released. /// The floating cursor is animated to merge with the regular cursor. AnimationController get floatingCursorResetController;