From 0076151228680fdae5c1eb5129c2564c794a0d5f Mon Sep 17 00:00:00 2001 From: Gustavo Schonarth Date: Sat, 9 Mar 2024 15:51:28 -0300 Subject: [PATCH] Avoid event fire when touch outside is just for scrolling Use `touchEnd` instead of `touchStart` --- src/components/container.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/container.tsx b/src/components/container.tsx index 2ca6438..47f0eb4 100644 --- a/src/components/container.tsx +++ b/src/components/container.tsx @@ -34,7 +34,7 @@ export default function Container(props: ViewProps) { ), default: ( - + {props.children} ),