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]
* Fixed Style toggle issue.

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

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

Loading…
Cancel
Save