diff --git a/CHANGELOG.md b/CHANGELOG.md index f39d407d..a3b9203b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# [3.3.1] +* Pass any specified key in QuillEditor constructor to super. + # [3.3.0] * Fixed Style toggle issue. diff --git a/lib/src/widgets/editor.dart b/lib/src/widgets/editor.dart index 36146c80..c1c62c92 100644 --- a/lib/src/widgets/editor.dart +++ b/lib/src/widgets/editor.dart @@ -270,7 +270,8 @@ class QuillEditor extends StatefulWidget { this.linkActionPickerDelegate = defaultLinkActionPickerDelegate, this.customStyleBuilder, this.floatingCursorDisabled = false, - Key? key}) : super(key: key); + Key? key}) + : super(key: key); factory QuillEditor.basic({ required QuillController controller, diff --git a/pubspec.yaml b/pubspec.yaml index 3337d958..12edce78 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: 3.3.0 +version: 3.3.1 #author: bulletjournal homepage: https://bulletjournal.us/home/index.html repository: https://github.com/singerdmx/flutter-quill