From 60b105ee29a91fe915f87b582de6db8911ca9865 Mon Sep 17 00:00:00 2001 From: Cheryl Date: Mon, 7 Aug 2023 08:43:44 -0700 Subject: [PATCH] Upgrade to 7.3.2 --- CHANGELOG.md | 3 +++ lib/src/widgets/toolbar.dart | 2 -- lib/src/widgets/toolbar/link_style_button.dart | 2 +- pubspec.yaml | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f1c2661e..4742cf80 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# [7.3.2] +- Added builder for custom button in _LinkDialog. + # [7.3.1] - Added case sensitive and whole word search parameters. - Added wrap around. diff --git a/lib/src/widgets/toolbar.dart b/lib/src/widgets/toolbar.dart index f287518f..17886fc8 100644 --- a/lib/src/widgets/toolbar.dart +++ b/lib/src/widgets/toolbar.dart @@ -159,9 +159,7 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget { /// Validate the legitimacy of hyperlinks RegExp? linkRegExp, - LinkDialogAction? linkDialogAction, - Key? key, }) { final isButtonGroupShown = [ diff --git a/lib/src/widgets/toolbar/link_style_button.dart b/lib/src/widgets/toolbar/link_style_button.dart index eb870219..b5346b42 100644 --- a/lib/src/widgets/toolbar/link_style_button.dart +++ b/lib/src/widgets/toolbar/link_style_button.dart @@ -226,7 +226,7 @@ class _LinkDialogState extends State<_LinkDialog> { ); } - Widget _okButton() { + Widget _okButton() { if (widget.action != null) { return widget.action!.builder(_canPress(), _applyLink); } diff --git a/pubspec.yaml b/pubspec.yaml index ed564884..b60278bf 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: flutter_quill description: A rich text editor built for the modern Android, iOS, web and desktop platforms. It is the WYSIWYG editor and a Quill component for Flutter. -version: 7.3.1 +version: 7.3.2 homepage: https://bulletjournal.us/home/index.html repository: https://github.com/singerdmx/flutter-quill