set case of input
This commit is contained in:
parent
09e22b6eca
commit
5407f6bfe5
1 changed files with 2 additions and 1 deletions
|
@ -169,12 +169,13 @@ export class Login extends React.Component {
|
||||||
Please enter your CircleCI token
|
Please enter your CircleCI token
|
||||||
</Text>
|
</Text>
|
||||||
<TextInput
|
<TextInput
|
||||||
style={[styles.input, styles.text]}
|
style={[styles.text, styles.input]}
|
||||||
onChangeText={this.textChanged}
|
onChangeText={this.textChanged}
|
||||||
value={this.state.token}
|
value={this.state.token}
|
||||||
onSubmitEditing={this.validate}
|
onSubmitEditing={this.validate}
|
||||||
placeholder="CircleCI Token"
|
placeholder="CircleCI Token"
|
||||||
placeholderTextColor="#A7A7A7"
|
placeholderTextColor="#A7A7A7"
|
||||||
|
autoCapitalize={'none'}
|
||||||
autoCorrect={false}
|
autoCorrect={false}
|
||||||
/>
|
/>
|
||||||
<TouchableWithoutFeedback onPress={this.showTokenHelp}>
|
<TouchableWithoutFeedback onPress={this.showTokenHelp}>
|
||||||
|
|
Reference in a new issue