diff --git a/CHANGELOG.md b/CHANGELOG.md index d4e8f538..4c4f03a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ +# [6.0.7] +* Allow disabling of selection toolbar. + # [6.0.6+1] -* Revert 6.0.6 +* Revert 6.0.6. # [6.0.6] * Fix wrong custom embed key. diff --git a/example/lib/pages/home_page.dart b/example/lib/pages/home_page.dart index 93b5ae48..0836a98e 100644 --- a/example/lib/pages/home_page.dart +++ b/example/lib/pages/home_page.dart @@ -108,7 +108,7 @@ class _HomePageState extends State { autoFocus: false, readOnly: false, placeholder: 'Add content', - enableSelectionToolbar: !(kIsWeb || _isDesktop()), + enableSelectionToolbar: isMobile(), expands: false, padding: EdgeInsets.zero, onImagePaste: _onImagePaste, diff --git a/pubspec.yaml b/pubspec.yaml index 5cfb1351..7894b846 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.0.6+1 +version: 6.0.7 #author: bulletjournal homepage: https://bulletjournal.us/home/index.html repository: https://github.com/singerdmx/flutter-quill