javascript - "autoCapitalize" is not a valid style property - error in ReactNative - Stack Overflow

I am receiving an error when trying to autoCapitalize. If I remove it, the ponent renders, but auto cap

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
Add a ment  | 

1 Answer 1

Reset to default 13

autoCapitalize 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条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信