You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It looks like your description is missing some necessary information, or the list of reproduction steps is not complete. Can you please add all the details specified in the template? This is necessary for people to be able to understand and reproduce the issue being reported.
I am going to close this, but feel free to open a new issue with the additional information provided. Thanks!
I have been using TextInput .
As per the documentation textAlign enum('start', 'center', 'end')
Set the position of the cursor from where editing will begin.
I had made the following changes
<TextInput
ref="company"
autoCapitalize='none'
style={[styles.input,styles.formLabel,commonStyles.smallText]}
value={this.state.company}
underlineColorAndroid={'transparent'}
onChangeText={(text) => this.setState({company:text})}
textAlign={"start"}
/>
and getting this error
Error while updating property 'textAlign' in shadow node of type AndroidTextInput
The text was updated successfully, but these errors were encountered: