Fix: Indented position not holding while editing

pull/162/head
Xin Yao 4 years ago
parent f7d47a12db
commit 900d0f2489
  1. 3
      CHANGELOG.md
  2. 17
      lib/models/documents/nodes/line.dart
  3. 2
      pubspec.yaml

@ -1,3 +1,6 @@
## [1.2.1]
* Indented position not holding while editing.
## [1.2.0]
* Fix image button cancel causes crash.

@ -208,18 +208,23 @@ class Line extends Container<Leaf?> {
_unwrap();
} else if (blockStyle != parentStyle) {
_unwrap();
final block = Block()..applyAttribute(blockStyle);
_wrap(block);
block.adjust();
_applyBlockStyles(newStyle);
} // else the same style, no-op.
} else if (blockStyle.value != null) {
// Only wrap with a new block if this is not an unset
final block = Block()..applyAttribute(blockStyle);
_wrap(block);
block.adjust();
_applyBlockStyles(newStyle);
}
}
void _applyBlockStyles(Style newStyle) {
var block = Block();
for (final style in newStyle.getBlocksExceptHeader().values) {
block = block..applyAttribute(style);
}
_wrap(block);
block.adjust();
}
/// Wraps this line with new parent [block].
///
/// This line can not be in a [Block] when this method is called.

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

Loading…
Cancel
Save