本文介绍了ReactNative TextInput placeholderTextColor 似乎不起作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
这似乎是一件很简单的事情,我不明白我怎么做的不对,但是 ReactNative TextInput 上的 placeholderTextColor 对我没有任何作用.
It seems like such a simple thing, I don't see how I'm not getting this right, but placeholderTextColor on a ReactNative TextInput isn't doing anything for me.
http://facebook.github.io/react-native/docs/textinput.html#placeholdertextcolor
<TextInput
style={styles.input}
placeholder="Foobar"
placeholderTextColor="#FFFFFF"/>
什么都不做....
推荐答案
这有效 -
<TextInput
placeholder="Enter password"
placeholderTextColor="white"
/>
希望有帮助!干杯!
这篇关于ReactNative TextInput placeholderTextColor 似乎不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!