// Set autoCapitalize to 'none' to stop first letter cap
<TextInput
placeholder=""
placeholderTextColor='rgba(28,53,63, 1)'
autoCapitalize = 'none'
value ='test'
/>
<Text>{str.charAt(0).toUpperCase() + str.slice(1);}</Text>
<Text> {'Test'.toUpperCase()} </Text>