From 8a30d44042342a8f2aabb743e6d66262702659b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Fri, 6 Jan 2017 16:06:35 +0100 Subject: [PATCH] [RN] Disable autofocus on the welcome screen This prevents the keyboard from showing up right when the app opens. --- react/features/welcome/components/WelcomePage.native.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react/features/welcome/components/WelcomePage.native.js b/react/features/welcome/components/WelcomePage.native.js index 4e8fdc9b3..75d43086b 100644 --- a/react/features/welcome/components/WelcomePage.native.js +++ b/react/features/welcome/components/WelcomePage.native.js @@ -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 }