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

admin2025-04-03  1

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

转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1743620665a213675.html

最新回复(0)