I am receiving an error when trying to autoCapitalize. If I remove it, the ponent renders, but auto capitalize is on by default in ios (not android though). I want to add the property to ensure consistency.
This is the error (I removed the full listing of properties in order to condense)
"autoCapitalize" is not a valid style property StyleSheet loginActionText: {
"color": "#000",
"fontSize": 20,
"autoCapitalize": "none"
}
Valid style props: [
"alignContent",
"alignItems",
.
.
.
"width",
"writingDirection",
"zIndex"
]
My code is really straight forward. I have defined a style class
loginActionText: {
color: '#000',
fontSize: 20,
autocapitalize: 'none'
},
and then I am applying it to a Text Input
<TextInput style={styles.loginActionText}
label='Email Address'
placeholder='[email protected]'
value={this.state.email}
onChangeText={email => this.setState({ email })}
/>
I am receiving an error when trying to autoCapitalize. If I remove it, the ponent renders, but auto capitalize is on by default in ios (not android though). I want to add the property to ensure consistency.
This is the error (I removed the full listing of properties in order to condense)
"autoCapitalize" is not a valid style property StyleSheet loginActionText: {
"color": "#000",
"fontSize": 20,
"autoCapitalize": "none"
}
Valid style props: [
"alignContent",
"alignItems",
.
.
.
"width",
"writingDirection",
"zIndex"
]
My code is really straight forward. I have defined a style class
loginActionText: {
color: '#000',
fontSize: 20,
autocapitalize: 'none'
},
and then I am applying it to a Text Input
<TextInput style={styles.loginActionText}
label='Email Address'
placeholder='[email protected]'
value={this.state.email}
onChangeText={email => this.setState({ email })}
/>
Share
Improve this question
asked Jan 6, 2018 at 7:04
Bob AleenaBob Aleena
4561 gold badge7 silver badges18 bronze badges
1 Answer
Reset to default 13autoCapitalize
should be used this way:
<TextInput
...
autoCapitalize='none'
...
/>
instead of being a property of the style object
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743620663a4479721.html
评论列表(0条)