mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-06-04 21:18:31 +01:00
22 lines
535 B
TypeScript
22 lines
535 B
TypeScript
import { Stack } from "expo-router";
|
|
import { useTranslation } from "react-i18next";
|
|
import { Platform } from "react-native";
|
|
|
|
export default function SettingsLayout() {
|
|
const { t } = useTranslation();
|
|
return (
|
|
<Stack>
|
|
<Stack.Screen
|
|
name='index'
|
|
options={{
|
|
headerShown: !Platform.isTV,
|
|
headerTitle: t("tabs.settings"),
|
|
headerBlurEffect: "none",
|
|
headerTransparent: Platform.OS === "ios",
|
|
headerShadowVisible: false,
|
|
}}
|
|
/>
|
|
</Stack>
|
|
);
|
|
}
|