From e23251de90a55ebc5b7c5a8d7fbe39e1c9e9f02c Mon Sep 17 00:00:00 2001 From: G Date: Sat, 6 Sep 2025 21:18:21 +0000 Subject: [PATCH] refactor: Wrapped the App in GestureHandlerRootView. --- App.tsx | 55 +++++++++++++++++++++++++++++-------------------------- 1 file changed, 29 insertions(+), 26 deletions(-) diff --git a/App.tsx b/App.tsx index 0cd2544..fe87972 100644 --- a/App.tsx +++ b/App.tsx @@ -10,6 +10,7 @@ import theme from "@/themes/Theme"; import "react-native-gesture-handler"; import "react-native-reanimated"; import { StatusBar } from "expo-status-bar"; +import { GestureHandlerRootView } from "react-native-gesture-handler"; import { SafeAreaProvider } from "react-native-safe-area-context"; import { Provider } from "react-redux"; import { store } from "./src/redux"; @@ -21,32 +22,34 @@ export default function App() { log.verbose("App started..."); return ( - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + ); } -- libgit2 0.27.1