Upgrade to 3.3.1

pull/592/head
X Code 3 years ago
parent 95be062c71
commit 1d1d0757c6
  1. 3
      CHANGELOG.md
  2. 3
      lib/src/widgets/editor.dart
  3. 2
      pubspec.yaml

@ -1,3 +1,6 @@
# [3.3.1]
* Pass any specified key in QuillEditor constructor to super.
# [3.3.0] # [3.3.0]
* Fixed Style toggle issue. * Fixed Style toggle issue.

@ -270,7 +270,8 @@ class QuillEditor extends StatefulWidget {
this.linkActionPickerDelegate = defaultLinkActionPickerDelegate, this.linkActionPickerDelegate = defaultLinkActionPickerDelegate,
this.customStyleBuilder, this.customStyleBuilder,
this.floatingCursorDisabled = false, this.floatingCursorDisabled = false,
Key? key}) : super(key: key); Key? key})
: super(key: key);
factory QuillEditor.basic({ factory QuillEditor.basic({
required QuillController controller, required QuillController controller,

@ -1,6 +1,6 @@
name: flutter_quill name: flutter_quill
description: A rich text editor supporting mobile and web (Demo App @ bulletjournal.us) description: A rich text editor supporting mobile and web (Demo App @ bulletjournal.us)
version: 3.3.0 version: 3.3.1
#author: bulletjournal #author: bulletjournal
homepage: https://bulletjournal.us/home/index.html homepage: https://bulletjournal.us/home/index.html
repository: https://github.com/singerdmx/flutter-quill repository: https://github.com/singerdmx/flutter-quill

Loading…
Cancel
Save