Reputation: 335
Trying to set keyboardType on a TextInput with the dark keyboard theme, how do you do this in React Native?
Upvotes: 15
Views: 11083
Reputation: 1525
As documented here: https://facebook.github.io/react-native/docs/textinput
Upvotes: 15
Reputation: 4175
you can set keyboardAppearance
in Textinput for change theme 'default', 'light', 'dark'
<TextInput
keyboardAppearance='dark'
/>
Upvotes: 8
Reputation: 31
you can just change the color in style to black in the textInput style color:'black'
Upvotes: -1