frontend client for gemstone. decentralised workplace app
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: gesture handler

serenity bf23395d 1808a80a

+6 -3
+6 -3
src/app/_layout.tsx
··· 16 16 import { Slot, SplashScreen } from "expo-router"; 17 17 import { useEffect } from "react"; 18 18 import { Platform, View } from "react-native"; 19 + import { GestureHandlerRootView } from "react-native-gesture-handler"; 19 20 20 21 const RootLayoutInner = () => { 21 22 const [loaded, error] = useFonts({ ··· 71 72 72 73 const RootLayout = () => { 73 74 return ( 74 - <RootProviders> 75 - <RootLayoutInner /> 76 - </RootProviders> 75 + <GestureHandlerRootView> 76 + <RootProviders> 77 + <RootLayoutInner /> 78 + </RootProviders> 79 + </GestureHandlerRootView> 77 80 ); 78 81 }; 79 82