Upgrade to 1.6.0

pull/278/head
Xin Yao 4 years ago
parent 3c1ee9eec2
commit 2af193390b
  1. 3
      CHANGELOG.md
  2. 5
      example/lib/pages/home_page.dart
  3. 11
      lib/src/widgets/toolbar.dart
  4. 2
      pubspec.yaml

@ -1,3 +1,6 @@
## [1.6.0]
* Support Multi Row Toolbar.
## [1.5.0]
* Remove file_picker dependency.

@ -141,10 +141,7 @@ class _HomePageState extends State<HomePage> {
embedBuilder: defaultEmbedBuilderWeb);
}
var toolbar = QuillToolbar.basic(
controller: _controller!,
multiRowsDisplay: false,
onImagePickCallback: _onImagePickCallback,
);
controller: _controller!, onImagePickCallback: _onImagePickCallback);
if (kIsWeb) {
toolbar = QuillToolbar.basic(
controller: _controller!,

@ -307,12 +307,11 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget {
spacing: 4,
children: children,
);
} else {
return Container(
constraints: BoxConstraints.tightFor(height: preferredSize.height),
color: color ?? Theme.of(context).canvasColor,
child: ArrowIndicatedButtonList(buttons: children),
);
}
return Container(
constraints: BoxConstraints.tightFor(height: preferredSize.height),
color: color ?? Theme.of(context).canvasColor,
child: ArrowIndicatedButtonList(buttons: children),
);
}
}

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

Loading…
Cancel
Save