mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-03-16 06:16:21 +00:00
wip
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
import type { ParamListBase, RouteProp } from "@react-navigation/native";
|
||||
import type { NativeStackNavigationOptions } from "@react-navigation/native-stack";
|
||||
import { Platform } from "react-native";
|
||||
import { HeaderBackButton } from "../common/HeaderBackButton";
|
||||
|
||||
type ICommonScreenOptions =
|
||||
@@ -12,9 +13,9 @@ type ICommonScreenOptions =
|
||||
export const commonScreenOptions: ICommonScreenOptions = {
|
||||
title: "",
|
||||
headerShown: true,
|
||||
headerTransparent: true,
|
||||
headerTransparent: Platform.OS === "ios",
|
||||
headerShadowVisible: false,
|
||||
headerBlurEffect: "none",
|
||||
headerBlurEffect: Platform.OS === "ios" ? "none" : undefined,
|
||||
headerLeft: () => <HeaderBackButton />,
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user