Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b09f3ea commit 1373dabCopy full SHA for 1373dab
Libraries/Components/TextInput/TextInput.js
@@ -50,6 +50,7 @@ var AndroidTextInputAttributes = {
50
multiline: true,
51
password: true,
52
placeholder: true,
53
+ placeholderTextColor: true,
54
text: true,
55
testID: true,
56
underlineColorAndroid: true,
@@ -514,6 +515,7 @@ var TextInput = React.createClass({
514
515
onLayout={this.props.onLayout}
516
password={this.props.password || this.props.secureTextEntry}
517
placeholder={this.props.placeholder}
518
+ placeholderTextColor={this.props.placeholderTextColor}
519
text={this.state.bufferedValue}
520
underlineColorAndroid={this.props.underlineColorAndroid}
521
children={children}
0 commit comments