diff --git a/justfile b/justfile index d557c7b..e79b8b9 100644 --- a/justfile +++ b/justfile @@ -30,3 +30,6 @@ expo-install +package: expo-start *args: cd xtablo-expo && npx expo start {{args}} + +build-expo: + cd xtablo-expo && eas build --platform all diff --git a/xtablo-expo/app/_layout.tsx b/xtablo-expo/app/_layout.tsx index c22cea8..20eb496 100644 --- a/xtablo-expo/app/_layout.tsx +++ b/xtablo-expo/app/_layout.tsx @@ -14,7 +14,6 @@ import { cloneDeep } from "lodash"; import { SplashScreenController } from "@/components/Splash"; import { useInitializeApp } from "@/hooks/auth"; import { LoadingView } from "@/components/LoadingView"; -import { ClickOutsideProvider } from "react-native-click-outside"; window.structuredClone = cloneDeep; @@ -37,17 +36,15 @@ export default function RootLayout() { return ( - - - - - - - - - + + + + + + + ); }