mirror of
https://github.com/streamyfin/streamyfin.git
synced 2025-08-20 18:37:18 +02:00
32 lines
701 B
TypeScript
32 lines
701 B
TypeScript
import { Stack } from "expo-router";
|
|
import React from "react";
|
|
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.Screen
|
|
name="transcoding-player"
|
|
options={{
|
|
headerShown: false,
|
|
autoHideHomeIndicator: true,
|
|
title: "",
|
|
animation: "fade",
|
|
}}
|
|
/>
|
|
</Stack>
|
|
</>
|
|
);
|
|
}
|