diff --git a/dart_quill_delta/lib/src/delta/delta.dart b/dart_quill_delta/lib/src/delta/delta.dart index 95ee0f87..fc0527bc 100644 --- a/dart_quill_delta/lib/src/delta/delta.dart +++ b/dart_quill_delta/lib/src/delta/delta.dart @@ -147,7 +147,7 @@ class Delta { Operation get last => operations.last; @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { if (identical(this, other)) return true; if (other is! Delta) return false; final typedOther = other; diff --git a/example/lib/screens/quill/my_quill_editor.dart b/example/lib/screens/quill/my_quill_editor.dart index e5f05981..28ab3100 100644 --- a/example/lib/screens/quill/my_quill_editor.dart +++ b/example/lib/screens/quill/my_quill_editor.dart @@ -1,5 +1,4 @@ import 'dart:io' as io show Directory, File; -import 'dart:ui' show FontFeature; import 'package:cached_network_image/cached_network_image.dart' show CachedNetworkImageProvider; diff --git a/example/lib/screens/settings/cubit/settings_cubit.freezed.dart b/example/lib/screens/settings/cubit/settings_cubit.freezed.dart index 1a0795df..4799a386 100644 --- a/example/lib/screens/settings/cubit/settings_cubit.freezed.dart +++ b/example/lib/screens/settings/cubit/settings_cubit.freezed.dart @@ -149,7 +149,7 @@ class _$SettingsStateImpl implements _SettingsState { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$SettingsStateImpl && diff --git a/lib/src/widgets/editor/editor.dart b/lib/src/widgets/editor/editor.dart index c6696e35..aedf1252 100644 --- a/lib/src/widgets/editor/editor.dart +++ b/lib/src/widgets/editor/editor.dart @@ -307,10 +307,10 @@ class QuillEditorState extends State // that might interfere with the editor key behavior, such as // SingleChildScrollView. Thanks to @wliumelb for the workaround. // See issue https://github.com/singerdmx/flutter-quill/issues/304 - return RawKeyboardListener( - onKey: (_) {}, + return KeyboardListener( + onKeyEvent: (_) {}, focusNode: FocusNode( - onKey: (node, event) => KeyEventResult.skipRemainingHandlers, + onKeyEvent: (node, event) => KeyEventResult.skipRemainingHandlers, ), child: editor, ); @@ -453,10 +453,11 @@ class _QuillEditorSelectionGestureDetectorBuilder } bool isShiftClick(PointerDeviceKind deviceKind) { - final pressed = RawKeyboard.instance.keysPressed; return deviceKind == PointerDeviceKind.mouse && - (pressed.contains(LogicalKeyboardKey.shiftLeft) || - pressed.contains(LogicalKeyboardKey.shiftRight)); + (HardwareKeyboard.instance + .isLogicalKeyPressed(LogicalKeyboardKey.shiftLeft) || + HardwareKeyboard.instance + .isLogicalKeyPressed(LogicalKeyboardKey.shiftRight)); } @override @@ -739,8 +740,10 @@ class RenderEditor extends RenderEditableContainerBox } bool get _shiftPressed => - RawKeyboard.instance.keysPressed.contains(LogicalKeyboardKey.shiftLeft) || - RawKeyboard.instance.keysPressed.contains(LogicalKeyboardKey.shiftRight); + HardwareKeyboard.instance + .isLogicalKeyPressed(LogicalKeyboardKey.shiftLeft) || + HardwareKeyboard.instance + .isLogicalKeyPressed(LogicalKeyboardKey.shiftRight); void setStartHandleLayerLink(LayerLink value) { if (_startHandleLayerLink == value) { diff --git a/lib/src/widgets/others/default_styles.dart b/lib/src/widgets/others/default_styles.dart index ee0d0788..b841fc81 100644 --- a/lib/src/widgets/others/default_styles.dart +++ b/lib/src/widgets/others/default_styles.dart @@ -1,5 +1,3 @@ -import 'dart:ui'; - import 'package:flutter/material.dart'; import '../../models/documents/attribute.dart'; diff --git a/lib/src/widgets/raw_editor/raw_editor_state.dart b/lib/src/widgets/raw_editor/raw_editor_state.dart index d33d0cdc..c943fa6a 100644 --- a/lib/src/widgets/raw_editor/raw_editor_state.dart +++ b/lib/src/widgets/raw_editor/raw_editor_state.dart @@ -14,7 +14,7 @@ import 'package:flutter/services.dart' ClipboardData, HardwareKeyboard, LogicalKeyboardKey, - RawKeyDownEvent, + KeyDownEvent, SystemChannels, TextInputControl; import 'package:flutter_keyboard_visibility/flutter_keyboard_visibility.dart' @@ -782,7 +782,7 @@ class QuillRawEditorState extends EditorState }), child: Focus( focusNode: widget.configurations.focusNode, - onKey: _onKey, + onKeyEvent: _onKeyEvent, child: QuillKeyboardListener( child: Container( constraints: constraints, @@ -796,13 +796,15 @@ class QuillRawEditorState extends EditorState ); } - KeyEventResult _onKey(node, RawKeyEvent event) { + KeyEventResult _onKeyEvent(node, KeyEvent event) { // Don't handle key if there is a meta key pressed. - if (event.isAltPressed || event.isControlPressed || event.isMetaPressed) { + if (HardwareKeyboard.instance.isAltPressed || + HardwareKeyboard.instance.isControlPressed || + HardwareKeyboard.instance.isMetaPressed) { return KeyEventResult.ignored; } - if (event is! RawKeyDownEvent) { + if (event is! KeyDownEvent) { return KeyEventResult.ignored; } // Handle indenting blocks when pressing the tab key. @@ -824,7 +826,7 @@ class QuillRawEditorState extends EditorState return KeyEventResult.ignored; } - KeyEventResult _handleSpaceKey(RawKeyEvent event) { + KeyEventResult _handleSpaceKey(KeyEvent event) { final child = controller.document.queryChild(controller.selection.baseOffset); if (child.node == null) { @@ -855,7 +857,7 @@ class QuillRawEditorState extends EditorState return KeyEventResult.handled; } - KeyEventResult _handleTabKey(RawKeyEvent event) { + KeyEventResult _handleTabKey(KeyEvent event) { final child = controller.document.queryChild(controller.selection.baseOffset); @@ -876,7 +878,7 @@ class QuillRawEditorState extends EditorState if (parentBlock.style.containsKey(Attribute.ol.key) || parentBlock.style.containsKey(Attribute.ul.key) || parentBlock.style.containsKey(Attribute.checked.key)) { - controller.indentSelection(!event.isShiftPressed); + controller.indentSelection(!HardwareKeyboard.instance.isShiftPressed); } return KeyEventResult.handled; } @@ -905,7 +907,7 @@ class QuillRawEditorState extends EditorState controller.selection.base.offset > node.documentOffset) { return insertTabCharacter(); } - controller.indentSelection(!event.isShiftPressed); + controller.indentSelection(!HardwareKeyboard.instance.isShiftPressed); return KeyEventResult.handled; }