forked from Ninjalama/streamyfin_mirror
23 lines
568 B
TypeScript
23 lines
568 B
TypeScript
import {Stack} from "expo-router";
|
|
import { Platform } from "react-native";
|
|
import { useTranslation } from "react-i18next";
|
|
|
|
export default function CustomMenuLayout() {
|
|
const { t } = useTranslation();
|
|
return (
|
|
<Stack>
|
|
<Stack.Screen
|
|
name="index"
|
|
options={{
|
|
headerShown: true,
|
|
headerLargeTitle: true,
|
|
headerTitle: t("tabs.custom_links"),
|
|
headerBlurEffect: "prominent",
|
|
headerTransparent: Platform.OS === "ios",
|
|
headerShadowVisible: false,
|
|
}}
|
|
/>
|
|
</Stack>
|
|
);
|
|
}
|