diff --git a/react/features/welcome/components/PagedList.android.js b/react/features/welcome/components/PagedList.android.js index c1e7db560..a40cef823 100644 --- a/react/features/welcome/components/PagedList.android.js +++ b/react/features/welcome/components/PagedList.android.js @@ -51,7 +51,6 @@ export default class PagedList extends AbstractPagedList { ] }> @@ -86,6 +86,7 @@ export default class PagedList extends AbstractPagedList { diff --git a/react/features/welcome/components/WelcomePage.native.js b/react/features/welcome/components/WelcomePage.native.js index 428f39d55..3fd78fcd6 100644 --- a/react/features/welcome/components/WelcomePage.native.js +++ b/react/features/welcome/components/WelcomePage.native.js @@ -48,6 +48,7 @@ class WelcomePage extends AbstractWelcomePage { constructor(props) { super(props); + this.state._fieldFocused = false; this.state.hintBoxAnimation = new Animated.Value(0); // Bind event handlers so they are only bound once per instance. @@ -230,7 +231,7 @@ class WelcomePage extends AbstractWelcomePage { return ( - + { t('welcomepage.roomnameHint') } diff --git a/react/features/welcome/components/styles.js b/react/features/welcome/components/styles.js index 2fd7a2499..72daa9214 100644 --- a/react/features/welcome/components/styles.js +++ b/react/features/welcome/components/styles.js @@ -114,6 +114,13 @@ export default createStyleSheet({ paddingVertical: 2 * BoxModel.padding }, + /** + * The text of the hint box. + */ + hintText: { + textAlign: 'center' + }, + /** * Container for the text on the hint box. */