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>
|
<Text style = { styles.title }>Enter room name</Text>
|
||||||
<TextInput
|
<TextInput
|
||||||
autoCapitalize = 'none'
|
autoCapitalize = 'none'
|
||||||
|
autoComplete = { false }
|
||||||
autoCorrect = { false }
|
autoCorrect = { false }
|
||||||
autoFocus = { true }
|
autoFocus = { true }
|
||||||
onChangeText = { this._onRoomChange }
|
onChangeText = { this._onRoomChange }
|
||||||
placeholder = 'room name'
|
placeholder = 'room name'
|
||||||
style = { styles.textInput }
|
style = { styles.textInput }
|
||||||
|
underlineColorAndroid = 'transparent'
|
||||||
value = { this.state.room } />
|
value = { this.state.room } />
|
||||||
<TouchableHighlight
|
<TouchableHighlight
|
||||||
disabled = { this._isJoinDisabled() }
|
disabled = { this._isJoinDisabled() }
|
||||||
|
|
Loading…
Reference in New Issue