gpt4 book ai didi

react-native - 使 native TextInput 成为只读

转载 作者:行者123 更新时间:2023-12-03 22:44:37 24 4
gpt4 key购买 nike

我想在我的 RN 应用程序中只读文本输入。我试图设置可编辑的 Prop ,但它无法正常工作。我怎样才能做到这一点?

<DetailInput
inputStyle={styles.inputStyles}
height={120}
width={width - 40}
multiline={true}
numberOfLines={6}
underlineColorAndroid="transparent"
maxLength={500}
editable={!userRegistrationInProgress}
onChangeText={value => this.statementChangedHandler(value)}
/>

const detailInput = props => {

return (
<TextInput
{...props}
style=
{[
props.inputStyle,
{ height: props.height, width: props.width},
!props.valid && props.touched ? props.invalidInput : null
]}
/>
);
}

export default detailInput;

最佳答案

 <TextInput
value = "Read Only"
editable = {false}
/>

将 editable false 设置为只读 TextInput。

关于react-native - 使 native TextInput 成为只读,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52090440/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com