0.0.2 • Published 8 years ago

react-native-photo-guideline-grid v0.0.2

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

react-native-photo-guideline-grid

A simple component to display a guideline grid according to Rule of thirds.

Screenshot of the guideline grid

Usage

npm install react-native-photo-guideline-grid --save

then use it in a component:

import PhotoGuidelineGrid from 'react-native-photo-guideline-grid';

class MyView extends Component {
  //...

  render() {
    return (
      // ...
      <View style={{flex: 1}}>
        <Image {...} />
        <PhotoGuidelineGrid />
      </View>
    );
  }