|
|
|
@ -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; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|