Issue Description
If use TextInput component with textAlign:'right' property, when typing space, it is not shown until entering another character (not space)
Steps to Reproduce / Code Snippets
const styles = { textInput:{ textAlign:'right', color:'#3599E0', padding:0 } }
render(){ return ( <TextInput style={styles.textInput} value={this.state.value}/> ) }
Expected Results
Show space in TextInput
Additional Information
- React Native version: 0.34
- Platform(s) (iOS, Android, or both?): iOS
- Operating System (macOS, Linux, or Windows?): macOS
Issue Description
If use TextInput component with textAlign:'right' property, when typing space, it is not shown until entering another character (not space)
Steps to Reproduce / Code Snippets
const styles = { textInput:{ textAlign:'right', color:'#3599E0', padding:0 } }render(){ return ( <TextInput style={styles.textInput} value={this.state.value}/> ) }Expected Results
Show space in TextInput
Additional Information