diff --git a/react/features/welcome/components/WelcomePage.native.js b/react/features/welcome/components/WelcomePage.native.js index 29f11fc87..f527fb1fc 100644 --- a/react/features/welcome/components/WelcomePage.native.js +++ b/react/features/welcome/components/WelcomePage.native.js @@ -167,10 +167,17 @@ class WelcomePage extends AbstractWelcomePage { * @returns {void} */ _onFieldFocusChange(focused) { - focused - && this.setState({ - _fieldFocused: true + if (focused) { + // Stop placeholder animation. + this._clearTimeouts(); + this.setState({ + _fieldFocused: true, + roomPlaceholder: '' }); + } else { + // Restart room placeholder animation. + this._updateRoomname(); + } Animated.timing( this.state.hintBoxAnimation,