Skip to content

Commit d8b0367

Browse files
committed
Upgrade to 6.3.2
1 parent 11f65f9 commit d8b0367

File tree

3 files changed

+13
-9
lines changed

3 files changed

+13
-9
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# [6.3.2]
2+
* Added `unknownEmbedBuilder` to QuillEditor.
3+
* Fix error style when input chinese japanese or korean.
4+
15
# [6.3.1]
26
* Add color property to the basic factory function.
37

lib/src/widgets/editor.dart

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -494,12 +494,12 @@ class QuillEditorState extends State<QuillEditor>
494494
readOnly,
495495
) =>
496496
_buildCustomBlockEmbed(
497-
node,
498-
context,
499-
controller,
500-
readOnly,
501-
widget.unknownEmbedBuilder,
502-
),
497+
node,
498+
context,
499+
controller,
500+
readOnly,
501+
widget.unknownEmbedBuilder,
502+
),
503503
linkActionPickerDelegate: widget.linkActionPickerDelegate,
504504
customStyleBuilder: widget.customStyleBuilder,
505505
floatingCursorDisabled: widget.floatingCursorDisabled,
@@ -541,7 +541,7 @@ class QuillEditorState extends State<QuillEditor>
541541
EmbedsBuilder? unknownEmbedBuilder,
542542
) {
543543
final builders = widget.embedBuilders;
544-
544+
545545
var _node = node;
546546
// Creates correct node for custom embed
547547
if (node.value.type == BlockEmbed.customType) {
@@ -555,7 +555,7 @@ class QuillEditorState extends State<QuillEditor>
555555
}
556556
}
557557
}
558-
558+
559559
if (unknownEmbedBuilder != null) {
560560
return unknownEmbedBuilder(context, controller, _node, readOnly);
561561
}

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_quill
22
description: A rich text editor supporting mobile and web (Demo App @ bulletjournal.us)
3-
version: 6.3.1
3+
version: 6.3.2
44
#author: bulletjournal
55
homepage: https://bulletjournal.us/home/index.html
66
repository: https://github.com/singerdmx/flutter-quill

0 commit comments

Comments
 (0)