MM-17649 - fix VoiceOver on server select & login (#3855)
This commit is contained in:
parent
a76c0fbb9d
commit
7e7c652828
2 changed files with 8 additions and 2 deletions
|
|
@ -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}
|
||||
|
|
|
|||
|
|
@ -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')}
|
||||
|
|
|
|||
Loading…
Reference in a new issue