npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

react-native-paper-grid

v0.1.12

Published

React Native Grid for React Native Paper

Readme

React Native Paper Grid 🐵

WARNING!! THIS LIB IS UNDER DEVELOPMENT!! DON'T USE IT IN AMBIENT PRODUCTION!

This is a small and easy grid layout for the react-native-paper library UI. The idea is to make the components more easier to position.

Installation

npm install react-native-paper-grid --save

Usage

Include the components

import { Col, Row, Grid } from "react-native-paper-grid";

1. One column (100%)

<Grid>
  <Row>
    <Col></Col>
  </Row>
</Grid>

For default all components will be stretched to width of the . If you don't want this use the 'inline' prop

2. Two columns (50% and 50%)

<Grid>
  <Row>
    <Col></Col>
    <Col></Col>
  </Row>
</Grid>

Note: If you don't assign the size property, it defaults to equal width with its siblings

3. Three columns (33.33% each)

<Grid>
  <Row>
    <Col></Col>
    <Col></Col>
    <Col></Col>
  </Row>
</Grid>

4. Two rows

<Grid>
    <Row>
      <Col></Col>
    </Row>
    <Row>
      <Col></Col>
    </Row>
</Grid>

5. Two cols (75% and 25%)

<Grid>
  <Row>
    <Col size={75}></Col>
    <Col size={25}></Col>
  </Row>
</Grid>

This is exactly same as

<Grid>
  <Row>
    <Col size={3}></Col>
    <Col size={1}></Col>
  </Row>
</Grid>

Same concept applies to <Col />

6. Inline components

<Grid>
  <Row>
    <Col inline>
      <RadioButton
        value="first"
        status={'unchecked' }
        onPress={() => {}}
      />
      <Text>Radio Button 1</Text>
    </Col>
    <Col inline>
      <RadioButton
        value="second"
        status={'unchecked' }
        onPress={() => {}}
      />
      <Text>Radio Button 2</Text>
    </Col>
  </Row>
</Grid>

7. Nested Layout or Grid

<Grid>
  <Row>
    <Col>
      <Row nopad>
        <Col inline nopad>
          <Checkbox
            status={'unchecked'}
            onPress={() => {}}
          />
          <Text>Checkbox 1</Text>
        </Col>
      </Row>
      <Row nopad>
        <Col inline nopad>
          <Checkbox
            status={'unchecked'}
            onPress={() => {}}
          />
          <Text>Checkbox 2</Text>
        </Col>
      </Row>
    </Col>
    <Col>
      <Row nopad>
        <Col inline nopad>
          <Checkbox
            status={'unchecked'}
            onPress={() => {}}
          />
          <Text>Checkbox 1</Text>
        </Col>
      </Row>
      <Row nopad>
        <Col inline nopad>
          <Checkbox
            status={'unchecked'}
            onPress={() => {}}
          />
          <Text>Checkbox 2</Text>
        </Col>
      </Row>
    </Col>
  </Row>
</Grid>

'nopad' prop is to be used when you don't need the internal padding of the or

8. Fixed width and fluid width combination

<Grid>
  <Row>
    <Col width={60}>
        <Text>Fixed width</Text>
    </Col>
    <Col>
        <Text>Fluid width</Text>
    </Col>
  </Row>
</Grid>