add inserting indents for lines for selected text (#1188)

pull/1195/head
bohdanudreambit 2 years ago committed by GitHub
parent d83cc0cf4c
commit fe8102e456
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      CHANGELOG.md
  2. 22
      lib/src/widgets/raw_editor.dart
  3. 2
      pubspec.yaml

@ -1,3 +1,6 @@
# [7.1.11]
- Add inserting indents for lines of list if text is selected
# [7.1.10]
- Image embedding tweaks
- Add MediaButton which is intened to superseed the ImageButton and VideoButton. Only image selection is working.

@ -675,17 +675,16 @@ class RawEditorState extends EditorState
if (event is! RawKeyDownEvent) {
return KeyEventResult.ignored;
}
// Handle indenting blocks when pressing the tab key.
if (event.logicalKey == LogicalKeyboardKey.tab) {
return _handleTabKey(event);
}
// Don't handle key if there is an active selection.
if (controller.selection.baseOffset != controller.selection.extentOffset) {
return KeyEventResult.ignored;
}
// Handle indenting blocks when pressing the tab key.
if (event.logicalKey == LogicalKeyboardKey.tab) {
return _handleTabKey(event);
}
// Handle inserting lists when space is pressed following
// a list initiating phrase.
if (event.logicalKey == LogicalKeyboardKey.space) {
@ -736,6 +735,19 @@ class RawEditorState extends EditorState
return KeyEventResult.handled;
}
if (controller.selection.baseOffset != controller.selection.extentOffset) {
if (child.node == null || child.node!.parent == null) {
return KeyEventResult.handled;
}
final parentBlock = child.node!.parent!;
if (parentBlock.style.containsKey(Attribute.ol.key) ||
parentBlock.style.containsKey(Attribute.ul.key) ||
parentBlock.style.containsKey(Attribute.checked.key)) {
controller.indentSelection(!event.isShiftPressed);
}
return KeyEventResult.handled;
}
if (child.node == null) {
return insertTabCharacter();
}

@ -1,6 +1,6 @@
name: flutter_quill
description: A rich text editor supporting mobile and web (Demo App @ bulletjournal.us)
version: 7.1.10
version: 7.1.11
#author: bulletjournal
homepage: https://bulletjournal.us/home/index.html
repository: https://github.com/singerdmx/flutter-quill

Loading…
Cancel
Save