Most of my Inputs are being auto-Capitalized on iOS only. I know there's the autoCapitalize property that I could set to false on every input to turn it off but I'm wondering if there's a global config I can apply project-wide.
I don't know any global config for that but simplest solution that I can think of would be creating a custom component with default autoCapitalize
value.
Example
const CustomTextInput = (props) => (<TextInput autoCapitalize="none" ...props />)
Like mentioned in the comment in one of the answer, use the following props:
autoCapitalize="none"
Adding this as the answer as people might miss out the info in comments.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With