feat: add autoCorrect and spellCheck props#519
Open
fendent wants to merge 1 commit intosoftware-mansion:mainfrom
Open
feat: add autoCorrect and spellCheck props#519fendent wants to merge 1 commit intosoftware-mansion:mainfrom
fendent wants to merge 1 commit intosoftware-mansion:mainfrom
Conversation
Adds boolean autoCorrect and spellCheck props to control iOS autocorrection and spell checking. Both default to system behavior when not specified.
exploIF
reviewed
Apr 7, 2026
Collaborator
exploIF
left a comment
There was a problem hiding this comment.
For the autoCorrect, it would be the best to introduce this prop on Android too, so it's consistent with react native TextInput
Comment on lines
+61
to
+62
| autoCorrect, | ||
| spellCheck, |
Collaborator
There was a problem hiding this comment.
I would explicitly mark them as enabled by default
Suggested change
| autoCorrect, | |
| spellCheck, | |
| autoCorrect = true, | |
| spellCheck = true, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds
autoCorrectandspellCheckboolean props to control iOSUITextAutocorrectionTypeandUITextSpellCheckingType.Currently there's no way to disable autocorrect or spell checking on the input. These props follow the same pattern as the existing
autoCapitalizeprop.When not specified, both default to the system behavior (enabled).
Test Plan
autoCorrect={false}— verify iOS does not suggest autocorrect replacementsspellCheck={false}— verify iOS does not underline misspelled wordsCompatibility
Checklist