“secureTextEntry”为false时键盘的建议

时间:2018-02-20 11:05:14

标签: react-native

我使用RN 0.52.2, 我有用户密码的TextInput:

<TextInput
 ref={(input) => {this.passwordInput = input}}
 value={this.props.userPassword}
 returnKeyType={'go'}
 secureTextEntry={this.state.hidePassword}
 autoCorrect={false}
 autoCapitalize={'none'}
 placeholder={'Пароль'}
 placeholderTextColor={THEMES.blue.gray}
 style={styles.textInput}
 onChangeText={this.props.updateUserPasswordFromSignUp}
 underlineColorAndroid="transparent"
 autoComplete={false}
/>

secureTextEntry 更改为false时,我会在键盘上看到建议,但我想避免建议。

P.s。:我尝试为Android和ios创建移动应用程序

0 个答案:

没有答案