Fix underlining on welcom text input on android

This commit is contained in:
yanas 2016-12-15 15:16:30 -06:00
parent f512583973
commit 5e377d3694
1 changed files with 2 additions and 0 deletions

View File

@ -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() }