我使用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创建移动应用程序