如何在本机应用程序中从键盘上删除某些部分?

How to remove some part from keyboard in react native app?

我的键盘上有一个空的 header(我指的是字母上方的行),如何从我的 React Native 应用程序的键盘上删除这部分?谢谢

enter image description here

在你的<TextInput />

中使用以下道具
  • 对于 android 使用:keyboardType='visible-password'
  • 对于 ios 使用:autoCorrect={false}