MacDeveloper1
MacDeveloper1
As you maybe noticed I used `FittedBox` which as I expected should inscribe the image into `availableDimension`. Otherwise for what is the `FittedBox` intended?
Here they are images: **Size of font Quill widget**  **Size of font in PDF** 
Let's consider the original code: ```dart Widget _buildContent(BuildContext context) { final theme = Theme.of(context); final hasFinalWidth = options.width != null; return Padding( padding: options.padding ?? const EdgeInsets.fromLTRB(10, 0, 0, 0),...
Well. This is a code from `8.6.4` in fil `lib/src/widgets/toolbar/buttons/quill_icon_button.dart` ```dart @override Widget build(BuildContext context) { return ConstrainedBox( constraints: BoxConstraints.tightFor(width: size, height: size), child: UtilityWidgets.maybeTooltip( message: tooltip, child: RawMaterialButton( visualDensity:...
> To make it clear, you did upgrade from your local branch to 9.0.5?? No. I upgraded from pub.dev: dependency: flutter_quill: ^9.0.5
> Replace with QuillToolbarSelectAlignmentButtons Are you sure? I see the parameter `options` which I used to pass my own tooltips and where in the code of this class is it...
Just for experiment I added those class and what I see?  **Where is correct vertical alignment for all buttons**? Also I see different icon looks. Look at aligment sharp...
  Why font family has rectangle highlighting (where rounding as before) and bold button has circle hightling (as it was rounding rectangle)?
> I don't know about your code sample, I test things in the example and it looks fine What are you talking about. Until version `8.6.4` I updated version and...
After investigation code I noticed that there is an `assert` which means that the `after` operation must be plain, i.e. must not contains attributes. ```dart final delta = Delta()..retain(index +...