mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-01-15 15:48:05 +00:00
7 lines
239 B
TypeScript
7 lines
239 B
TypeScript
import { Platform } from "react-native";
|
|
|
|
export const TAB_HEIGHT = Platform.OS === "android" ? 58 : 74;
|
|
|
|
// Matches `w-28` poster cards (approx 112px wide, 10/15 aspect ratio) + 2 lines of text.
|
|
export const POSTER_CAROUSEL_HEIGHT = 220;
|