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