mirror of
https://github.com/zimplexing/OrionTV.git
synced 2026-02-04 03:36:29 +08:00
7 lines
184 B
TypeScript
7 lines
184 B
TypeScript
import {Platform, useWindowDimensions} from 'react-native';
|
|
|
|
export function useScale(): number {
|
|
const {width} = useWindowDimensions();
|
|
return Platform.isTV ? width / 1000 : 1;
|
|
}
|