有时候输入密码的时候需要用密文,可以这样:
secureTextEntry={true}
使用场景
<TextInput
ref = 'phoneInput'
clearButtonMode='while-editing'
selectionColor="black"
secureTextEntry={true}
onChangeText={(text) => {this.change(text)}}
placeholder={'请输入密码'} style={styles.passwordStyle}
onFocus={this.scrollViewTo.bind(this)}
onEndEditing={()=>{this.refs.scroll.scrollTo(0)}}
keyboardType="default"
underlineColorAndroid='transparent'
/>