Today I Learned

hashrocket A Hashrocket project

Get Window Dimensions in React Native

React Native includes a hook for getting the current device's window dimensions in pixels.

const {height, width} = useWindowDimensions();
See More #mobile TILs