Upgrade to 7.3.2

pull/1347/head
Cheryl 2 years ago
parent 3263e7f259
commit 60b105ee29
  1. 3
      CHANGELOG.md
  2. 2
      lib/src/widgets/toolbar.dart
  3. 2
      lib/src/widgets/toolbar/link_style_button.dart
  4. 2
      pubspec.yaml

@ -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.

@ -159,9 +159,7 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget {
/// Validate the legitimacy of hyperlinks
RegExp? linkRegExp,
LinkDialogAction? linkDialogAction,
Key? key,
}) {
final isButtonGroupShown = [

@ -226,7 +226,7 @@ class _LinkDialogState extends State<_LinkDialog> {
);
}
Widget _okButton() {
Widget _okButton() {
if (widget.action != null) {
return widget.action!.builder(_canPress(), _applyLink);
}

@ -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

Loading…
Cancel
Save