[RN] Disable autofocus on the welcome screen
This prevents the keyboard from showing up right when the app opens.
This commit is contained in:
parent
4fef8a3b79
commit
8a30d44042
|
@ -102,7 +102,7 @@ class WelcomePage extends AbstractWelcomePage {
|
|||
autoCapitalize = 'none'
|
||||
autoComplete = { false }
|
||||
autoCorrect = { false }
|
||||
autoFocus = { true }
|
||||
autoFocus = { false }
|
||||
onChangeText = { this._onRoomChange }
|
||||
placeholder = 'room name'
|
||||
style = { styles.textInput }
|
||||
|
|
Loading…
Reference in New Issue