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