react native make inputfield with no capital letter ios code example
Example: react native textinput turnoff capitalize first letter
// Set autoCapitalize to 'none' to stop first letter cap
<TextInput
placeholder=""
placeholderTextColor='rgba(28,53,63, 1)'
autoCapitalize = 'none'
value ='test'
/>