Describe the bug
The placeholderTextColor is not being set whenever one wants to set a different placeholder text to the ones you want to display as values. Such as this:

To Reproduce
Picker componentplaceholderTextColoritemsExpected behavior
The placeholder text color should change to red. However, because of this line: https://github.com/lawnstarter/react-native-picker-select/blob/master/src/index.js#L193 the color attribute is never set.
Screenshots

Reproduction and/or code sample
In order to reproduce the behaviour, just create the following component:
const placeholderTextColor = 'red';
const CustomPicker = () =>
<Picker
placeholderTextColor="red"
placeholder={{label: 'Select an option', value: null}}
doneText="Select"
items={[{label: 'test 0', value: 0}, {label: 'test 1', value: 1}]}
value={null}
onValueChange={v => console.log(v)}
/>
Maybe I'm not understanding the issue here.
See the first use of the component here: https://snack.expo.io/rk1XLLpjQ
I added a placeholderTextColor, the placeholder itself is different from the default, and it works as I'm expecting it to. Are you expecting something different?
@lfkwtz You are right. I was following the docs for version 5.0.0, but was using version 4.2.0, once I checked the releases, I notices that version 4.4.0 was when the placeholderTextColor got added. I updated the lib and it worked. My bad, sorry.
All good. Glad it was an straightforward answer.
How to change placeholderTextColor in Android?
@lfkwtz Changing the placeholderTextColor is still not working on iOS. Is there anything else that needs to be done since the info is not in the docs?
look at the sample app
@NathanNovak I did this and it works :
<RNPickerSelect style={pickerStyle} ... />
const pickerStyle = {
inputIOS: {
color: 'white',
paddingHorizontal: 10,
backgroundColor: 'red',
borderRadius: 5,
},
placeholder: {
color: 'white',
},
inputAndroid: {
color: 'white',
paddingHorizontal: 10,
backgroundColor: 'red',
borderRadius: 5,
},
};
@NathanNovak I did this and it works :
<RNPickerSelect style={pickerStyle} ... />const pickerStyle = { inputIOS: { color: 'white', paddingHorizontal: 10, backgroundColor: 'red', borderRadius: 5, }, placeholder: { color: 'white', }, inputAndroid: { color: 'white', paddingHorizontal: 10, backgroundColor: 'red', borderRadius: 5, }, };
The issue is still persisting.
Most helpful comment
@NathanNovak I did this and it works :