aboutsummaryrefslogtreecommitdiffstats
path: root/apps/mobile/app/_layout.tsx
blob: 9f8f8ad51dde5132a9bcd36d76c8ca40a10a157a (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
import "@/globals.css";
import "expo-dev-client";

import { useEffect } from "react";
import { View } from "react-native";
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 { Providers } from "@/lib/providers";

export default function RootLayout() {
  const router = useRouter();
  const { hasShareIntent } = useShareIntent();

  useEffect(() => {
    if (hasShareIntent) {
      router.replace({
        pathname: "sharing",
      });
    }
  }, [hasShareIntent]);

  return (
    <ShareIntentProvider>
      <Providers>
        <View className="h-full w-full bg-white">
          <Stack
            screenOptions={{
              headerShown: false,
            }}
          >
            <Stack.Screen name="index" />
            <Stack.Screen
              name="sharing"
              options={{
                presentation: "modal",
              }}
            />
          </Stack>
          <StatusBar style="auto" />
        </View>
      </Providers>
    </ShareIntentProvider>
  );
}