window.matchMedia
polyfill for React Native
Has a peer dependency of walmartreact/react-native-orientation-listener, so make sure that's installed first.
import matchMedia from 'react-native-match-media'
global.matchMedia = matchMedia
if (global.matchMedia('(min-width: 400px)').matches) {
// Do something
}
MIT