Fix Android Navbar tap events (#4076)
Co-authored-by: Elias Nahum <nahumhbl@gmail.com>
This commit is contained in:
parent
fd015697a2
commit
edb46db358
1 changed files with 4 additions and 1 deletions
|
|
@ -394,7 +394,10 @@ export default class NetworkIndicator extends PureComponent {
|
|||
}
|
||||
|
||||
return (
|
||||
<Animated.View style={[styles.container, {top: this.top, backgroundColor: background, opacity: this.state.opacity}]}>
|
||||
<Animated.View
|
||||
pointerEvents='none'
|
||||
style={[styles.container, {top: this.top, backgroundColor: background, opacity: this.state.opacity}]}
|
||||
>
|
||||
<Animated.View style={styles.wrapper}>
|
||||
<FormattedText
|
||||
defaultMessage={defaultMessage}
|
||||
|
|
|
|||
Loading…
Reference in a new issue