The placeholder of the input is green but I want also make the green text input (when I am typing the text text color shows black which is not visible enough in my UI). How can I make it Green as well?
How to change the text color of text input in react native?
125.9k Views Asked by Syuzanna At
6
There are 6 best solutions below
1

add color: 'green';
in your TextInput
style will change the color
<TextInput style={styles.textInput} />
const styles = StyleSheet.create({
textInput: {
color: 'green',
},
});`
in native-base
you will need to take care also of theming see docs
0

Simply create a style for your input and set color as green
const styles = StyleSheet.create({
textInputStyle: {
color: 'green',
}
});
and assign it to your textInput
<TextInput
style={styles.textInputStyle}
placeholderTextColor='green'
underlineColorAndroid='green' />
0

//Here is my input text
<TextInput
style={styles.txtinp1}
placeholder="Password"
placeholderTextColor={"grey"}
/>
// here are my styles you just need to add color in styles
txtinp1: {
backgroundColor: "#000000",
height: "15%",
width: "90%",
marginBottom: 10,
borderRadius: 25,
paddingLeft: 20,
color: "grey",
},
1

after trying many different solutions, I implemented a custom TextInput component where I placed a Text component that changes the color as a background and a TextInput over it that has a transparent font color. I hope this issue can be fixed soon in a better way.
updateText(v) {
const { onChange } = this.props;
this.setState({ text: v});
onChange(v);
}
render() {
const { changeColor } = this.props;
const { text } = this.state;
return <View style={{ position: 'relative', flex: 1 }}>
<Text style={ [ { flex: 1, position: 'absolute', zIndex: 1 }, changeColor? { color: red } : null ]}>
{text}
</Text>
<RTextInput
onChangeText={v => this.updateText(v)}
style={[{ flex: 1, color: 'transparent', zIndex: 100 }]}
{...props}
/>
</View>
}
If you want to change the TextInput colour add a color in styles.
below is the example give you the TextInput color as blue: