MM-17649 - fix VoiceOver on server select & login (#3855)

This commit is contained in:
Ryan Wang 2020-01-24 12:57:40 -05:00 committed by Amit Uttam
parent a76c0fbb9d
commit 7e7c652828
2 changed files with 8 additions and 2 deletions

View file

@ -352,7 +352,10 @@ export default class Login extends PureComponent {
return (
<View style={style.container}>
<StatusBar/>
<TouchableWithoutFeedback onPress={this.blur}>
<TouchableWithoutFeedback
onPress={this.blur}
accessible={false}
>
<KeyboardAwareScrollView
ref={this.scrollRef}
style={style.container}

View file

@ -425,7 +425,10 @@ export default class SelectServer extends PureComponent {
enabled={Platform.OS === 'ios'}
>
<StatusBar barStyle={statusStyle}/>
<TouchableWithoutFeedback onPress={this.blur}>
<TouchableWithoutFeedback
onPress={this.blur}
accessible={false}
>
<View style={[GlobalStyles.container, GlobalStyles.signupContainer]}>
<Image
source={require('assets/images/logo.png')}