Whether autocorrection is disabled. Defaults to
true.Disables autocorrection for text input fields.
.autocorrectionDisabled(isDisabled?: boolean)
true.const body = () => {
const [username, setUsername] = useState("")
return TextField({ text: username, setText: setUsername })
.autocorrectionDisabled()
}
const body = () => {
const [text, setText] = useState("")
return TextField({ text, setText })
.autocorrectionDisabled(isCodeInput)
}