UNPKG

@sfenton/react-native-readium-with-cfi

Version:

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

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