UNPKG

react-native-readium

Version:

A react-native wrapper for https://readium.org/

8 lines (6 loc) 207 B
import { Platform, PixelRatio } from 'react-native'; export const getWidthOrHeightValue = (val: number) => { return Platform.OS === 'android' ? PixelRatio.getPixelSizeForLayoutSize(val) : val; };