nativebase input输入框type设置为password时,在ios输入卡顿,android没有问题。
(react-native的textinput secureTextEntry属性设置为true时同样的问题)
步骤1:聚焦输入框,输入“123”,失去焦点
步骤2:再聚焦到输入框,再输入4,会把“123”顶掉只剩4,或者顶掉“3”剩“124”
const [pwd, setPwd] = useState({
oldPwd: '',
newPwd: '',
newPwd2: '',
showOldPwd: false,
showNewPwd: false,
});
<TextInput
value={pwd.oldPwd}
secureTextEntry={true}
onChangeText={text => {
setPwd({...pwd, oldPwd: text}), console.log(pwd);
}}
/>
<Input
placeholder={t('旧密码')}
value={pwd.oldPwd}
type={pwd.showPwd ? 'text' : 'password'}
onChangeText={text => {
setPwd({...pwd, oldPwd: text}), console.log(pwd);
}}
/>