0

TextInput在我的 React Native 应用程序中使用autocapitalize: 'characters'. 它自动将所有字符大写,但我仍然可以按 shift 键(iOS),它会切换为小写。我想防止用户能够切换到小写。有谁知道是否有办法做到这一点?

4

1 回答 1

0

解决方法之一可能是

export default function MyUpperCaseText() {
  const [text, setText] = React.useState("")
  return <TextInput value={text} onChangeText={(text)=>setText(text.toUpperCase())} />
}
于 2020-10-29T12:40:37.007 回答