Home > Blockchain >  Horizontal scrollable toolbar of Flutter quill package
Horizontal scrollable toolbar of Flutter quill package

Time:11-23

does anyone have the idea to implement a horizontal toolbar as package Flutter_quill said? Many thanks

enter image description here

CodePudding user response:

You need to set multiRowsDisplay to false. Something like the following:

var toolbar = QuillToolbar.basic(
  controller: _controller,
  multiRowsDisplay: false,
  showAlignmentButtons: true,
);
  • Related