0.1.1 • Published 1 year ago

react-native-grid-overlay v0.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

react-native-grid-overlay

A quick tool to draw a grid overlay to help with pixel perfect layouts

Installation

npm install react-native-grid-overlay

Usage

import { GridOverlay } from 'react-native-grid-overlay';

export default function App() {
  return (
    <>
      <GridOverlay
        color={'black'}
        opacity={0.5}
        stepSize={5}
        height={height}
        width={width}
      />
    </>
  );
}

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT


Made with create-react-native-library