Upgrade to 3.9.4

pull/650/head
X Code 3 years ago
parent 65b6e6d2cd
commit 9fc2df7cba
  1. 3
      CHANGELOG.md
  2. 6
      lib/src/widgets/embeds/default_embed_builder.dart
  3. 2
      pubspec.yaml

@ -1,3 +1,6 @@
# [3.9.4]
* Hiding dialog after selecting action for image.
# [3.9.3] # [3.9.3]
* Update ImageResizer for Android. * Update ImageResizer for Android.

@ -184,9 +184,9 @@ Widget _menuOptionsForReadonlyImage(
text: 'Save'.i18n, text: 'Save'.i18n,
onPressed: () { onPressed: () {
GallerySaver.saveImage(imageUrl).then((_) { GallerySaver.saveImage(imageUrl).then((_) {
ScaffoldMessenger.of(context).showSnackBar( ScaffoldMessenger.of(context)
SnackBar(content: Text('Saved'.i18n))); .showSnackBar(SnackBar(content: Text('Saved'.i18n)));
Navigator.pop(context); Navigator.pop(context);
}); });
}, },
); );

@ -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: 3.9.3 version: 3.9.4
#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