@ -1,6 +1,7 @@
## [8.5.2]
- Update `README.md`
- Feature: Allow you to add custom callback when the `QuillToolbarColorButton` pressed
- The `QuillToolbar` is no implements `PreferredSizeWidget` so you can use it in the AppBar just like `QuillBaseToolbar`
## [8.5.1]
@ -95,6 +95,7 @@ Compatible versions:
| flutter_quill | flutter_quill_extensions | flutter_quill_test |
|-------------------------|--------------------------|-------------------------|
| 8.5.2 | 0.6.9 | 0.0.5 |
| 8.5.1 | 0.6.7 | 0.0.5 |
| 8.5.0 | 0.6.7 | 0.0.5 |
@ -6,6 +6,8 @@ class TestingHomePage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return const Scaffold();
return const Scaffold(
appBar: QuillToolbar(),
);
}
@ -7,7 +7,7 @@ import '../../models/documents/attribute.dart';
import '../utils/provider.dart';
import 'base_toolbar.dart';
class QuillToolbar extends StatelessWidget {
class QuillToolbar extends StatelessWidget implements PreferredSizeWidget {
const QuillToolbar({
super.key,
this.configurations = const QuillToolbarConfigurations(),
@ -444,4 +444,9 @@ class QuillToolbar extends StatelessWidget {
),
Size get preferredSize => configurations.axis == Axis.horizontal
? const Size.fromHeight(defaultToolbarSize)
: const Size.fromWidth(defaultToolbarSize);
@ -1,6 +1,6 @@
name: flutter_quill
description: A rich text editor built for the modern Android, iOS, web and desktop platforms. It is the WYSIWYG editor and a Quill component for Flutter.
version: 8.5.1
version: 8.5.2
homepage: https://1o24bbs.com/c/bulletjournal/108
repository: https://github.com/singerdmx/flutter-quill