Upgrade to 2.0.0

pull/410/head
Xin Yao 4 years ago
parent 97ba9cfb39
commit 40e68ac3ec
  1. 3
      CHANGELOG.md
  2. 3
      lib/src/widgets/cursor.dart
  3. 8
      lib/src/widgets/text_block.dart
  4. 2
      pubspec.yaml

@ -1,3 +1,6 @@
## [2.0.0]
* Text Alignment functions + Block Format standards.
## [1.9.6]
* Support putting QuillEditor inside a Scrollable view.

@ -247,7 +247,8 @@ class CursorPainter {
/// [position] is relative (x) in text line
void paint(Canvas canvas, Offset offset, TextPosition position) {
final caretOffset =
editable!.getOffsetForCaret(position, prototype) + offset;;
editable!.getOffsetForCaret(position, prototype) + offset;
var caretRect = prototype.shift(caretOffset);
if (style.offset != null) {
caretRect = caretRect.shift(style.offset!);

@ -213,11 +213,13 @@ class EditableTextBlock extends StatelessWidget {
extraIndent = 16.0 * indent.value;
}
var baseIndent = 0.0;
if (attrs.containsKey(Attribute.blockQuote.key)) {
return 16.0 + extraIndent;
} else if (attrs.containsKey(Attribute.list.key) ||
}
var baseIndent = 0.0;
if (attrs.containsKey(Attribute.list.key) ||
attrs.containsKey(Attribute.codeBlock.key)) {
baseIndent = 32.0;
}

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

Loading…
Cancel
Save