PLT-5609 Fix different speed for text animation (#290)

This commit is contained in:
enahum 2017-02-23 13:50:25 -03:00 committed by GitHub
parent afe09babfa
commit 06cf8b7851
3 changed files with 24 additions and 18 deletions

View file

@ -186,14 +186,16 @@ class Login extends Component {
<Image
source={logo}
/>
<Text style={GlobalStyles.header}>
{this.props.config.SiteName}
</Text>
<FormattedText
style={GlobalStyles.subheader}
id='web.root.signup_info'
defaultMessage='All team communication in one place, searchable and accessible anywhere'
/>
<View>
<Text style={GlobalStyles.header}>
{this.props.config.SiteName}
</Text>
<FormattedText
style={GlobalStyles.subheader}
id='web.root.signup_info'
defaultMessage='All team communication in one place, searchable and accessible anywhere'
/>
</View>
<ErrorText error={this.props.loginRequest.error || this.props.checkMfaRequest.error || this.state.error}/>
<TextInput
ref={this.loginRef}

View file

@ -90,11 +90,13 @@ export default class Mfa extends Component {
<Image
source={logo}
/>
<FormattedText
style={[GlobalStyles.header, GlobalStyles.label]}
id='login_mfa.enterToken'
defaultMessage="To complete the sign in process, please enter a token from your smartphone's authenticator"
/>
<View>
<FormattedText
style={[GlobalStyles.header, GlobalStyles.label]}
id='login_mfa.enterToken'
defaultMessage="To complete the sign in process, please enter a token from your smartphone's authenticator"
/>
</View>
<ErrorText error={this.state.error}/>
<TextInputWithLocalizedPlaceholder
ref={this.inputRef}

View file

@ -59,11 +59,13 @@ export default class SelectServer extends Component {
<Image
source={logo}
/>
<FormattedText
style={[GlobalStyles.header, GlobalStyles.label]}
id='mobile.components.select_server_view.enterServerUrl'
defaultMessage='Enter Server URL'
/>
<View>
<FormattedText
style={[GlobalStyles.header, GlobalStyles.label]}
id='mobile.components.select_server_view.enterServerUrl'
defaultMessage='Enter Server URL'
/>
</View>
<TextInputWithLocalizedPlaceholder
ref={this.inputRef}
value={this.props.serverUrl}