Fix underlining on welcom text input on android
This commit is contained in:
parent
f512583973
commit
5e377d3694
|
@ -99,11 +99,13 @@ class WelcomePage extends AbstractWelcomePage {
|
|||
<Text style = { styles.title }>Enter room name</Text>
|
||||
<TextInput
|
||||
autoCapitalize = 'none'
|
||||
autoComplete = { false }
|
||||
autoCorrect = { false }
|
||||
autoFocus = { true }
|
||||
onChangeText = { this._onRoomChange }
|
||||
placeholder = 'room name'
|
||||
style = { styles.textInput }
|
||||
underlineColorAndroid = 'transparent'
|
||||
value = { this.state.room } />
|
||||
<TouchableHighlight
|
||||
disabled = { this._isJoinDisabled() }
|
||||
|
|
Loading…
Reference in New Issue