react-native-datepicker
react-native-datepicker copied to clipboard
Cannot adjust placeholder textcolor to a near transparent color
Issue
Tried to change the placeholder text color with an 'rgba(161, 161, 161, 0.3)' value, but the color appeared different on android and ios. In case of iOS, i got the expected result.
Expected Behavior
iOS
Android
Code
customStyles={{
dateInput: {
borderWidth: 0,
alignItems: "flex-start"
},
placeholderText: {
fontSize: 34,
color:'rgba(161, 161, 161, 0.3)' ,
paddingLeft: 10,
paddingTop: 10,
width: width
},
dateText: {
fontSize: 18,
paddingLeft: 10,
paddingTop: 10,
width: width
},
dateTouchBody: { borderWidth: 0, fontSize: 18 }
}}```
### Environment
1. "react-native": "0.57.7",
2. "react-native-datepicker": "^1.7.2",
Our component does not handle this style.
@kelement how can I change the date text size and color, will you please tell?
did you find solution for this?