From f8256318e33d790402a3d8b71f3c85cf683bcfe6 Mon Sep 17 00:00:00 2001 From: Amir Panahandeh Date: Thu, 30 Nov 2023 20:19:56 +0330 Subject: [PATCH] Disable lookup, search and share --- packages/fleather/lib/src/widgets/editor.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/fleather/lib/src/widgets/editor.dart b/packages/fleather/lib/src/widgets/editor.dart index 889f44bb..c01c0256 100644 --- a/packages/fleather/lib/src/widgets/editor.dart +++ b/packages/fleather/lib/src/widgets/editor.dart @@ -748,13 +748,13 @@ class RawEditor extends StatefulWidget { abstract class EditorState extends State implements TextSelectionDelegate { @override - bool lookUpEnabled = true; + bool lookUpEnabled = false; @override - bool shareEnabled = true; + bool shareEnabled = false; @override - bool searchWebEnabled = true; + bool searchWebEnabled = false; ClipboardStatusNotifier? get clipboardStatus;