Question - bring up a lowercase keyboard
See original GitHub issueVersion
Tell us which versions you are using:
- tcomb-form-native v0.5.3
- react-native v0.23.1
Expected behaviour
This is more of a question, how do I bring up the lowercase keyboard on iOS when I have a simple form. e.g.- username: t.String password: t.String
When I select the textbox on iOS the keyboard comes up and it defaults to normal keyboard. So the first key is an Uppercase letter. In React (i.e HTML) you can disable this behaviour and bring up the lower case keyboard.
In the case of a username / password field, the keyboard defaulting to Uppercase is annoying.
Actual behaviour
As you type, the first character is Upper Case.
Steps to reproduce
Stack trace and console log
Thanks very much.
Issue Analytics
- State:
- Created 7 years ago
- Comments:6 (1 by maintainers)
Top Results From Across the Web
How to start a sentence WITHOUT caps? - Apple Community
To do what you want, you need to go to settings/general/keyboard and turn off auto-capitalization. Then you can start a sentence without a ......
Read more >Stuck With CAPS LOCK Fix - How To Write Lowercase Once ...
Stuck With CAPS LOCK Fix - How To Write Lowercase Once Again [Tutorial] Caps Lock, which causes you to type in all capital...
Read more >How to bring up keyboard in lower-case for a password Entry ...
I'd like for my password box to bring up the keyboard in lowercase. Seems like that should be simple, but I can't find...
Read more >How to enter capital letters or special characters when ... - Sony
Entering capital letters using the ABC key You can change to the uppercase input mode by pressing the ABC key on the on-screen...
Read more >How to Show Lowercase Keys on an iPhone - wikiHow
1. Open your iPhone's Settings. This is the gray cog icon located on one of your home screens or in your “Utilities” folder....
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
autoCapitalize
is your friend: http://facebook.github.io/react-native/releases/0.30/docs/textinput.html#autocapitalizeTake a look at the
TextInput
API docs 😊@alvaromb thanks. that worked.
@gcanti actually its the same in react (web) too. i.e. autoCapitalize=“none”