Files
streamyfin_mirror/app/(auth)/player/_layout.tsx
2025-07-21 09:44:24 +02:00

22 lines
444 B
TypeScript

import { Stack } from "expo-router";
import { SystemBars } from "react-native-edge-to-edge";
export default function Layout() {
return (
<>
<SystemBars hidden />
<Stack>
<Stack.Screen
name='direct-player'
options={{
headerShown: false,
autoHideHomeIndicator: true,
title: "",
animation: "fade",
}}
/>
</Stack>
</>
);
}