0.0.2 • Published 5 years ago

react-native-measureme v0.0.2

Weekly downloads
15,785
License
MIT
Repository
github
Last release
5 years ago

react-native-measureme

NPM version

A HOC to make your React-Native components aware of their width and height

Installation

npm i --save react-native-measureme

Usage

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
        <View style={{width:this.props.width, height:this.props.height}} />
    }
});

module.exports = require('react-native-measureme')(SizeAwareComponent);

Development

PRs highly appreciated

License

MIT License