api: fetch shows implemented

This commit is contained in:
Cron1cle
2025-10-02 13:24:38 +02:00
parent 921a53a504
commit badf355a2d
5 changed files with 152 additions and 30 deletions

View File

@@ -1,16 +1,19 @@
import { ShowProvider } from "@/contexts/ShowContext";
import { Stack } from "expo-router";
import "react-native-reanimated";
export default function RootLayout() {
return (
<Stack>
<Stack.Screen name="(tabs)" options={{ headerShown: false }} />
<Stack.Screen
name="showDetails"
options={{
headerShown: false,
}}
/>
</Stack>
<ShowProvider>
<Stack>
<Stack.Screen name="(tabs)" options={{ headerShown: false }} />
<Stack.Screen
name="showDetails"
options={{
headerShown: false,
}}
/>
</Stack>
</ShowProvider>
);
}