From 61a4c6cc35ef678a812e7433b4a803e9ec7637bd Mon Sep 17 00:00:00 2001 From: X Code Date: Thu, 26 Jan 2023 16:19:01 -0800 Subject: [PATCH] Upgrade to 6.3.1 --- CHANGELOG.md | 3 +++ lib/src/widgets/toolbar.dart | 3 +-- pubspec.yaml | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c909d3f..0df24919 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# [6.3.1] +* Add color property to the basic factory function. + # [6.3.0] * Support Flutter 3.7. diff --git a/lib/src/widgets/toolbar.dart b/lib/src/widgets/toolbar.dart index ec7821ce..5ea2ad18 100644 --- a/lib/src/widgets/toolbar.dart +++ b/lib/src/widgets/toolbar.dart @@ -116,10 +116,9 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget { /// The locale to use for the editor toolbar, defaults to system locale /// More at https://github.com/singerdmx/flutter-quill#translation Locale? locale, - + /// The color of the toolbar Color? color, - Key? key, }) { final isButtonGroupShown = [ diff --git a/pubspec.yaml b/pubspec.yaml index 466d5486..68f4cdfd 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: 6.3.0 +version: 6.3.1 #author: bulletjournal homepage: https://bulletjournal.us/home/index.html repository: https://github.com/singerdmx/flutter-quill