mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-05-20 13:56:37 +01:00
10 lines
273 B
TypeScript
10 lines
273 B
TypeScript
import { Dimensions } from "react-native";
|
|
|
|
const { width: W, height: H } = Dimensions.get("window");
|
|
|
|
export const scaleSize = (size: number): number => {
|
|
const widthRatio = W / 1920;
|
|
const heightRatio = H / 1080;
|
|
return size * Math.min(widthRatio, heightRatio);
|
|
};
|