-
Notifications
You must be signed in to change notification settings - Fork 857
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Text magnification feature for the Quill Editor #1504
Comments
Yes it should be a nice feature |
I am also working on an open source note-taking app, interested in discussing related issues or sharing experiences together? |
This is probably built-in function in TextField . |
I assume this is only for mobile? |
Sure. I don’t mind having a look at your repo, but only if I get some time... |
I’m attaching a video for reference. Many android apps either have the magnifier or the drag cursor widget (I don’t know what it’s actually called). I use Google Docs quite often and it has both: Screenrecorder-2023-11-07-22-47-17-176.mp4 |
Yeah it seems like it. Personally I think that all touchscreen enabled devices must have this feature. |
It's still on the drawing board. |
Thank you for sharing that. We will work on it soon. |
The typedef MagnifierBuilder = Widget? Function(
BuildContext context,
MagnifierController controller,
ValueNotifier<MagnifierInfo> magnifierInfo,
); |
any update? |
Reopened since it's reverted in #2413, we don't have plans on adding this feature back since it causes many issues, and we strongly prefer stability over adding new buggy features that are not well-executed. |
I'm making a note-taking app using the
flutter_quill
package. While using the editor, I noticed that dragging the cursor cannot magnify the text.Since I’m aware that the
TextMagnifierConfiguration
class is available for theTextField
widget and text magnification is enabled by default, I thought there might be something similar in theQuillEditorConfigurations
constructor but could not find any.Is this feature already available or is there a workaround to make it work? It’d be more convenient for users to edit their notes by moving the cursor using the magnifier.
The text was updated successfully, but these errors were encountered: