Answers for "avoid first letter capital in react native input"

1

react native capitalize first letter

<Text>{str.charAt(0).toUpperCase() + str.slice(1);}</Text>
Posted by: Guest on June-07-2021

Code answers related to "avoid first letter capital in react native input"

Browse Popular Code Answers by Language