@ -1,3 +1,6 @@
# [7.1.14]
- Add indents change for multiline selection.
# [7.1.13]
- Add custom recognizer.
@ -489,7 +489,7 @@ class Line extends Container<Leaf?> {
final remaining = len - local;
if (remaining > 0 && nextLine != null) {
final rest =
nextLine!.collectAllStylesWithOffsets(0, remaining, beg: local);
result.addAll(rest);
}
@ -136,9 +136,10 @@ class QuillController extends ChangeNotifier {
final indent = style.value.attributes[Attribute.indent.key];
final formatIndex = math.max(style.offset, selection.start);
final formatLength = math.min(
style.offset + (style.length ?? 0),
selection.end,
) - style.offset;
) -
style.offset;
Attribute? formatAttribute;
if (indent == null) {
if (isIncrease) {
@ -1,6 +1,6 @@
name: flutter_quill
description: A rich text editor supporting mobile and web (Demo App @ bulletjournal.us)
version: 7.1.13
version: 7.1.14
#author: bulletjournal
homepage: https://bulletjournal.us/home/index.html
repository: https://github.com/singerdmx/flutter-quill