blob: 0f38165b7265610f6599d8a4b4f25a7e003f8e8f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
import "@/globals.css";
import "expo-dev-client";
import { useEffect } from "react";
import { View } from "react-native";
import { GestureHandlerRootView } from "react-native-gesture-handler";
import { useRouter } from "expo-router";
import { Stack } from "expo-router/stack";
import { ShareIntentProvider, useShareIntent } from "expo-share-intent";
import { StatusBar } from "expo-status-bar";
import { StyledStack } from "@/components/navigation/stack";
import { Providers } from "@/lib/providers";
import { cn } from "@/lib/utils";
import { BottomSheetModalProvider } from "@gorhom/bottom-sheet";
import { useColorScheme } from "nativewind";
export default function RootLayout() {
const router = useRouter();
const { hasShareIntent } = useShareIntent();
const { colorScheme } = useColorScheme();
useEffect(() => {
if (hasShareIntent) {
router.replace({
pathname: "sharing",
});
}
}, [hasShareIntent]);
return (
<ShareIntentProvider>
<Providers>
<GestureHandlerRootView style={{ flex: 1 }}>
<BottomSheetModalProvider>
<View
className={cn(
"w-full flex-1 bg-gray-100 text-foreground dark:bg-background",
colorScheme == "dark" ? "dark" : "light",
)}
>
<StyledStack
contentClassName="bg-gray-100 dark:bg-background"
screenOptions={{
headerShown: false,
}}
>
<Stack.Screen name="index" />
<Stack.Screen name="sharing" />
</StyledStack>
<StatusBar style="auto" />
</View>
</BottomSheetModalProvider>
</GestureHandlerRootView>
</Providers>
</ShareIntentProvider>
);
}
|