-
Notifications
You must be signed in to change notification settings - Fork 1k
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Have you checked for an existing issue?
- I have searched the existing issues
Use case
QuillEditor doesn't expose a way to control autocorrection. The platform's autocorrect is always enabled, which creates problems for applications with specialized terminology (medical, scientific, technical) where autocorrect interferes with precise input.
Proposal
Add an autocorrect boolean property to QuillEditorConfig that passes through to TextInputConfiguration.autocorrect.
QuillEditor(
configurations: QuillEditorConfig(
autocorrect: false, // Disable platform autocorrection
),
)Rationale
- Mirrors Flutter's API - Follows the same pattern as
TextField.autocorrect - Backwards compatible - Defaults to
true(preserves current behavior) - Minimal footprint - 4 files, 12 lines added
Implementation
I have a working implementation ready: https://github.com/elea-ai/flutter-quill/tree/feature/add-autocorrect-to-config
Would the maintainers be open to reviewing a PR for this? Happy to make any adjustments to meet project standards.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request