Results 549 comments of Ellet

> I'm still experiencing this issue on 8.3.0. Did you mean to close this issue? Reopened.

> I'm making a note taking app using the flutter_quill package. While using the editor, I noticed that the text cannot be magnified by dragging the cursor. > > Since...

> > > I'm making a note taking app using the flutter_quill package. While using the editor, I noticed that the text cannot be magnified by dragging the cursor. >...

> This is probably built-in function in TextField . Just need right way to invoke it. ![image](https://github.com/singerdmx/flutter-quill/assets/73608287/0a0a7dc9-d899-4c90-baa1-9cb6851dd2fd) Probably in `QuilRawEditorMultiChildRenderObjectWidget`

> https://api.flutter.dev/flutter/material/TextField/magnifierConfiguration.html The `TextMagnifierConfiguration` has `MagnifierBuilder` which returns a widget ```dart typedef MagnifierBuilder = Widget? Function( BuildContext context, MagnifierController controller, ValueNotifier magnifierInfo, ); ```

I just added the `TextMagniferConfiguration` in the `QuillEditorConfigurations` in this [commit](https://github.com/singerdmx/flutter-quill/commit/614bf1a526a122a848c67f747b85140be7bbb2b7) We are not using it and it has no effect right now but don't worry I marked it as...

This issue can be solved without reverting, it's looks like the issue is caused by using the new Material 3 recommended widgets instead of the previous ones that work for...

> I stumbled upon this today again. @freshtechtips do you have a hint for me? Thank you for the report Honestly, I don't think I'm able to address this issue...

> You can wrap QuillProvider for each QuillEditor, that is what I did for my app. If you want all editors to use a same toolbar, then wrap that toolbar...

Thank you for the feedbacks, we are already working on a new major version