MacDeveloper1

Results 17 comments of 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** ![quill_font_size](https://github.com/DavBfr/dart_pdf/assets/130981115/2a58e6d1-abc4-4a43-ab83-071d49093d5d) **Size of font in PDF** ![pdf_font_size](https://github.com/DavBfr/dart_pdf/assets/130981115/de9ce171-30e3-4117-a2e3-d95c5537c969)

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? ![image](https://github.com/singerdmx/flutter-quill/assets/130981115/2f1a84eb-d9fa-4ee1-845a-1b308bcd44a0) **Where is correct vertical alignment for all buttons**? Also I see different icon looks. Look at aligment sharp...

![image](https://github.com/singerdmx/flutter-quill/assets/130981115/b7f32d23-3ec2-4cd7-af8b-2d78d5fa71de) ![image](https://github.com/singerdmx/flutter-quill/assets/130981115/e778d82d-936b-43eb-aaed-78f7fab69352) 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 +...