0.1.0 • Published 6 years ago

react-native-orientation-wrapper v0.1.0

Weekly downloads
3
License
ISC
Repository
github
Last release
6 years ago

react-native-orientation-wrapper

Component that listens orientation changes and passes width and height to the child components

Usage:

import OrientationWrapper from 'react-native-orientation-wrapper'
...
<OrientationWrapper>
  <YourComponent />
</OrientationWrapper>


// YourComponent

class YourComponent extends Component {
  render() {
    const { height, width } = this.props
    ...
  }
}