Fix: don't let the toast take pointer events (close #374) (#380)

This commit is contained in:
Paul Frazee 2023-04-03 16:00:00 -05:00 committed by GitHub
parent b12cd53a4d
commit 59e6b308c6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -39,7 +39,7 @@ function Toast({message}: {message: string}) {
const opacityStyle = {opacity: interp}
return (
<View style={styles.container}>
<View style={styles.container} pointerEvents="none">
<Animated.View
style={[
pal.view,