Files
fltr-app/app/_layout.tsx
2025-10-02 09:18:44 +02:00

17 lines
340 B
TypeScript

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>
);
}