diff --git a/CHANGELOG.md b/CHANGELOG.md index 40b95eab..601b3bf2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## [1.3.3] +* Upgrade file_picker version. + ## [1.3.2] * Fix copy/paste bug. diff --git a/lib/src/widgets/text_line.dart b/lib/src/widgets/text_line.dart index c258acc0..b44f16a9 100644 --- a/lib/src/widgets/text_line.dart +++ b/lib/src/widgets/text_line.dart @@ -41,9 +41,7 @@ class TextLine extends StatelessWidget { // newline, which is unexpected and probably we should find out the // root cause final childCount = line.childCount; - if (line.hasEmbed || - (childCount > 1 && line.children.first is Embed)) - { + if (line.hasEmbed || (childCount > 1 && line.children.first is Embed)) { final embed = line.children.first as Embed; return EmbedProxy(embedBuilder(context, embed)); } diff --git a/pubspec.yaml b/pubspec.yaml index f7484234..98818c9c 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: flutter_quill description: A rich text editor supporting mobile and web (Demo App @ bulletjournal.us) -version: 1.3.2 +version: 1.3.3 #author: bulletjournal homepage: https://bulletjournal.us/home/index.html repository: https://github.com/singerdmx/flutter-quill