Upgrade to 7.2.2

pull/1259/head
Cheryl 2 years ago
parent 1124a1f26c
commit ebef9d7d95
  1. 3
      CHANGELOG.md
  2. 2
      lib/src/models/themes/quill_custom_button.dart
  3. 2
      lib/src/widgets/toolbar.dart
  4. 2
      pubspec.yaml

@ -1,3 +1,6 @@
# [7.2.2]
- Prevent operations on stale editor state.
# [7.2.1]
- Add support for android keyboard content insertion.
- Enhance color picker, enter hex color and color palette option.

@ -13,7 +13,7 @@ class QuillCustomButton {
///The icon color;
final Color? iconColor;
///The function when the icon is tapped
final VoidCallback? onTap;

@ -571,7 +571,7 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget {
hoverElevation: 0,
size: toolbarIconSize * kIconButtonFactor,
icon: Icon(
customButton.icon,
customButton.icon,
size: toolbarIconSize,
color: customButton.iconColor,
),

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

Loading…
Cancel
Save