Created
February 19, 2018 18:40
-
-
Save corysimmons/9877c809383533f8128ec8c49c90263c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Dimensions, PixelRatio } from 'react-native' | |
const { width, height } = Dimensions.get(`window`) | |
export const vw = size => size * width / PixelRatio.getPixelSizeForLayoutSize(100) / PixelRatio.get() | |
export const vh = size => size * height / PixelRatio.getPixelSizeForLayoutSize(100) / PixelRatio.get() | |
export const vmin = Math.min(vw, vh) | |
export const vmax = Math.max(vw, vh) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment