每个人。我正在使用crna和expo构建React本机应用程序。我有一些文本输入,其中之一需要输入安全的密码,即密码。
我将selectTextOnFocus设置为true,以便用户更轻松地复制和粘贴其登录信息。因此,当我在密码字段上将selectTextOnFocus设置为true时,它将无法正常工作。
这是我的代码
<TextInput
style={{marginBottom: 10, padding: 10, color:'#fff', borderRadius:25, backgroundColor:'rgba(255, 255, 255, 0.3)'}}
secureTextEntry={true} placeholder="Password"
placeholderTextColor='#fff'
selectTextOnFocus={true}
underlineColorAndroid='transparent'
onChangeText={(text)=>this.updateValue(text, 'pass')}/>
安全文本有效,但选择焦点上的文本无效。因此,我仍然无法将剪贴板中的任何内容粘贴到“密码”字段中。有人可以帮我吗?
非常感谢你。