Parameters
Whether autocorrection should be disabled. When
true, prevents automatic text correction. Defaults to true if not provided.Disables autocorrection for text input in this component.
.autocorrectionDisabled(isDisabled?: boolean): Component;
true, prevents automatic text correction. Defaults to true if not provided.const [username, setUsername] = useState("")
TextField({ placeholder: "Username", text: username, setText: setUsername })
.autocorrectionDisabled() // Prevent autocorrection of usernames