mirror of
https://github.com/tooot-app/app
synced 2025-06-05 22:19:13 +02:00
7 lines
264 B
TypeScript
7 lines
264 B
TypeScript
import { Platform } from 'react-native'
|
|
|
|
export const adaptiveScale = (size: number, factor: number = 0) =>
|
|
factor ? Math.round(size + size * (factor / 8)) : size
|
|
|
|
export const isLargeDevice = (Platform.OS === 'ios' && Platform.isPad) || Platform.OS === 'macos'
|