forked from Ninjalama/streamyfin_mirror
- Added new 'Other' setting to toggle new tab visibility - Added new Tab to show custom links - Added icon asset for list
21 lines
478 B
TypeScript
21 lines
478 B
TypeScript
import {Stack} from "expo-router";
|
|
import { Platform } from "react-native";
|
|
|
|
export default function CustomMenuLayout() {
|
|
return (
|
|
<Stack>
|
|
<Stack.Screen
|
|
name="index"
|
|
options={{
|
|
headerShown: true,
|
|
headerLargeTitle: true,
|
|
headerTitle: "Custom Links",
|
|
headerBlurEffect: "prominent",
|
|
headerTransparent: Platform.OS === "ios",
|
|
headerShadowVisible: false,
|
|
}}
|
|
/>
|
|
</Stack>
|
|
);
|
|
}
|