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