mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-03-16 07:46:29 +00:00
13 lines
365 B
TypeScript
13 lines
365 B
TypeScript
import { Dimensions } from 'react-native';
|
|
|
|
const { width, height } = Dimensions.get('window');
|
|
|
|
// Hero section height - 85% of screen height (matching Apple TV style)
|
|
export const HERO_HEIGHT = height * 0.65;
|
|
|
|
// Screen dimensions
|
|
export const SCREEN_WIDTH = width;
|
|
export const SCREEN_HEIGHT = height;
|
|
|
|
// Tablet detection
|
|
export const IS_TABLET = width >= 768;
|