Skip to content

Commit

Permalink
Fix build with Flutter 3.16.
Browse files Browse the repository at this point in the history
Bump version to 1.6.0.

Fixes glynskyi#66.
  • Loading branch information
Cyp committed Dec 6, 2023
1 parent 6b3a21a commit ff6f81f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
13 changes: 12 additions & 1 deletion lib/src/widgets/editor.dart
Original file line number Diff line number Diff line change
Expand Up @@ -736,7 +736,6 @@ class RawEditorState extends EditorState

// Cursors
CursorController? _cursorController;
FloatingCursorController? _floatingCursorController;

// Keyboard
late keyboard.KeyboardListener _keyboardListener;
Expand Down Expand Up @@ -1343,6 +1342,18 @@ class RawEditorState extends EditorState

@override
bool get liveTextInputEnabled => false;

@override
// TODO: implement lookUpEnabled
bool get lookUpEnabled => false;

@override
// TODO: implement searchWebEnabled
bool get searchWebEnabled => false;

@override
// TODO: implement shareEnabled
bool get shareEnabled => false;
}

class _Editor extends MultiChildRenderObjectWidget {
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: zefyrka
description: Clean, minimalistic and collaboration-ready rich text editor for Flutter based on Zefyr package.
version: 1.5.0
version: 1.6.0
homepage: https://github.com/glynskyi/zefyrka

environment:
Expand Down

0 comments on commit ff6f81f

Please sign in to comment.