Upgrade to 1.3.3

pull/259/head^2
Xin Yao 4 years ago
parent e69e97481b
commit 76ef63e87c
  1. 3
      CHANGELOG.md
  2. 4
      lib/src/widgets/text_line.dart
  3. 2
      pubspec.yaml

@ -1,3 +1,6 @@
## [1.3.3]
* Upgrade file_picker version.
## [1.3.2] ## [1.3.2]
* Fix copy/paste bug. * Fix copy/paste bug.

@ -41,9 +41,7 @@ class TextLine extends StatelessWidget {
// newline, which is unexpected and probably we should find out the // newline, which is unexpected and probably we should find out the
// root cause // root cause
final childCount = line.childCount; final childCount = line.childCount;
if (line.hasEmbed || if (line.hasEmbed || (childCount > 1 && line.children.first is Embed)) {
(childCount > 1 && line.children.first is Embed))
{
final embed = line.children.first as Embed; final embed = line.children.first as Embed;
return EmbedProxy(embedBuilder(context, embed)); return EmbedProxy(embedBuilder(context, embed));
} }

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

Loading…
Cancel
Save