Upgrade to 1.6.4

pull/295/head
Xin Yao 4 years ago
parent dad5c676cb
commit 3d6e259078
  1. 3
      CHANGELOG.md
  2. 2
      lib/src/models/documents/document.dart
  3. 2
      lib/src/models/documents/nodes/line.dart
  4. 2
      lib/src/widgets/controller.dart
  5. 2
      pubspec.yaml

@ -1,3 +1,6 @@
## [1.6.4]
* Bug fix for clear format button.
## [1.6.3]
* Fixed dragging right handle scrolling issue.

@ -126,7 +126,7 @@ class Document {
return (res.node as Line).collectStyle(res.offset, len);
}
/// Returns all style for any character within the specified text range.
/// Returns all styles for any character within the specified text range.
List<Style> collectAllStyles(int index, int len) {
final res = queryChild(index);
return (res.node as Line).collectAllStyles(res.offset, len);

@ -369,7 +369,7 @@ class Line extends Container<Leaf?> {
return result;
}
/// Returns all style for any character within the specified text range.
/// Returns all styles for any character within the specified text range.
List<Style> collectAllStyles(int offset, int len) {
final local = math.min(length - offset, len);
final result = <Style>[];

@ -63,7 +63,7 @@ class QuillController extends ChangeNotifier {
.mergeAll(toggledStyle);
}
/// Returns all style for any character within the specified text range.
/// Returns all styles for any character within the specified text range.
List<Style> getAllSelectionStyles() {
final styles = document.collectAllStyles(
selection.start, selection.end - selection.start)

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

Loading…
Cancel
Save