gpt4 book ai didi

javascript - react native : Unable to change color of text within component

转载 作者:行者123 更新时间:2023-12-05 06:14:55 25 4
gpt4 key购买 nike

我不确定为什么,但是在使用 <TextInput> 时组件 我无法使用标准 style={{color: '#HEX'}} 更改输入文本的颜色.

这是一个例子:

          <TextInput
style={{
backgroundColor: 'transparent',
color: '#fff',
borderBottomWidth: 0,
}}
keyboardAppearance={'dark'}
keyboardType={'numeric'}
selectionColor='#fff'
underlineColor="rgba(0,0,0,0)"
underlineColorAndroid="rgba(0,0,0,0)"

placeholderTextColor="#fff"

/>

还有一个非常烦人的紫色下划线,我似乎无法摆脱它。我需要为此使用某种特殊属性吗?

最佳答案

对于文本颜色,试试这个 theme={{ colors: { text: '#fff' } }};对于下划线,请尝试 autoCorrect={false}

代码


<TextInput
theme={{ colors: { text: '#fff' } }}
autoCorrect={false}
/>

关于javascript - react native : Unable to change color of text within <TextInput> component,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62666909/

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