Files
streamyfin/app/(auth)/(tabs)/(custom-links)/_layout.tsx
Simon Caron eb7fa93f9b remove dupe
2025-01-05 15:26:48 -05:00

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