gpt4 book ai didi

react-native - 如何更改禁用的 颜色

转载 作者:行者123 更新时间:2023-12-04 10:04:47 24 4
gpt4 key购买 nike

传递 Prop 时 react 原生更改文本颜色editable=false .
screenshot of text input

如何更改文本输入的颜色?,我已阅读文档 https://reactnative.dev/docs/textinput但没有得到帮助

最佳答案

如果要更改文本输入颜色,则可以根据 prop 更新样式:

<TextInput style={{ color: editable ? 'red' : 'blue' }} ... />

如果您尝试更改占位符颜色,您可以以类似的方式进行,但使用 placeHolderTextColor改为 Prop :
<TextInput placeHolderTextColor={ editable ? 'red' : 'blue' } ... />

关于react-native - 如何更改禁用的 <TextInput/> 颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61640404/

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