Skip to content

Commit

Permalink
Disable lookup, search and share
Browse files Browse the repository at this point in the history
  • Loading branch information
Amir-P committed Nov 30, 2023
1 parent 4ca1b7f commit f825631
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/fleather/lib/src/widgets/editor.dart
Original file line number Diff line number Diff line change
Expand Up @@ -748,13 +748,13 @@ class RawEditor extends StatefulWidget {
abstract class EditorState extends State<RawEditor>
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;

Expand Down

0 comments on commit f825631

Please sign in to comment.