A HOC to make your React-Native components aware of their width and height
npm install react-native-measuremeA HOC to make your React-Native components aware of their width and height
sh
npm i --save react-native-measureme
`Usage
`javascript
import React from 'react';
import {View} from 'react-native';const SizeAwareComponent = React.createClass({
render(){
//this component knows its render width and height through
//this.props.width & this.props.height
}
});
module.exports = require('react-native-measureme')(SizeAwareComponent);
``License
----
MIT License