[RN] Disable autofocus on the welcome screen

This prevents the keyboard from showing up right when the app opens.
This commit is contained in:
Saúl Ibarra Corretgé 2017-01-06 16:06:35 +01:00
parent 4fef8a3b79
commit 8a30d44042
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ class WelcomePage extends AbstractWelcomePage {
autoCapitalize = 'none' autoCapitalize = 'none'
autoComplete = { false } autoComplete = { false }
autoCorrect = { false } autoCorrect = { false }
autoFocus = { true } autoFocus = { false }
onChangeText = { this._onRoomChange } onChangeText = { this._onRoomChange }
placeholder = 'room name' placeholder = 'room name'
style = { styles.textInput } style = { styles.textInput }