diff --git a/CHANGELOG.md b/CHANGELOG.md index 60fd26e7..6ea52f06 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# [5.4.0] +* Added Formula Button (for maths support). + # [5.3.2] * Add more font family. diff --git a/lib/src/widgets/embeds/default_embed_builder.dart b/lib/src/widgets/embeds/default_embed_builder.dart index 50f8f037..bc3b9a81 100644 --- a/lib/src/widgets/embeds/default_embed_builder.dart +++ b/lib/src/widgets/embeds/default_embed_builder.dart @@ -164,7 +164,7 @@ Widget defaultEmbedBuilder( if (hasFocus) { // If the MathField is tapped, hides the built in keyboard SystemChannels.textInput.invokeMethod('TextInput.hide'); - print(mathController.currentEditingValue()); + debugPrint(mathController.currentEditingValue()); } }, child: MathField( diff --git a/pubspec.yaml b/pubspec.yaml index e3fb5f21..7a2dba04 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: 5.3.2 +version: 5.4.0 #author: bulletjournal homepage: https://bulletjournal.us/home/index.html repository: https://github.com/singerdmx/flutter-quill