Closed
Description
React Native version: 0.59.10
Steps To Reproduce
- Add the TextInput component with white text
- Make sure your device has Android OS and is in landscape mode
- Keyboard has white background and the text stays white rendering it invisible
Describe what you expected to happen:
The text should have a black color in fullscreen mode.
Snack, code example, or link to a repository:
<TextInput
underlineColorAndroid='transparent'
placeholder={getTranslations('login.email', language)}
placeholderTextColor='rgba(255, 255, 255, 0.5)'
autoCapitalize='none'
style={{..color: 'white'}}
keyboardType='email-address'
value={inputEmail}
=> this.passwordInput.focus()}
returnKeyType='next'
autoCorrect={false}
=> {
this.setState({
inputEmail: text,
});
}}
/>