does anyone have the idea to implement a horizontal toolbar as package Flutter_quill said? Many thanks
CodePudding user response:
You need to set multiRowsDisplay
to false
. Something like the following:
var toolbar = QuillToolbar.basic(
controller: _controller,
multiRowsDisplay: false,
showAlignmentButtons: true,
);