diff --git a/CHANGELOG.md b/CHANGELOG.md index eed8effb..42c9713d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# [7.1.13] +- Add custom recognizer. + # [7.1.12] - Add superscript and subscript styles. diff --git a/lib/src/widgets/delegate.dart b/lib/src/widgets/delegate.dart index a5b842a5..41ae8762 100644 --- a/lib/src/widgets/delegate.dart +++ b/lib/src/widgets/delegate.dart @@ -14,7 +14,8 @@ typedef EmbedsBuilder = EmbedBuilder Function(Embed node); typedef CustomStyleBuilder = TextStyle Function(Attribute attribute); -typedef CustomRecognizerBuilder = GestureRecognizer? Function(Attribute attribute); +typedef CustomRecognizerBuilder = GestureRecognizer? Function( + Attribute attribute); /// Delegate interface for the [EditorTextSelectionGestureDetectorBuilder]. /// diff --git a/pubspec.yaml b/pubspec.yaml index 316c44ce..f44f24bd 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: 7.1.12 +version: 7.1.13 #author: bulletjournal homepage: https://bulletjournal.us/home/index.html repository: https://github.com/singerdmx/flutter-quill