0.1.12 • Published 3 years ago

react-native-paper-grid v0.1.12

Weekly downloads
75
License
-
Repository
github
Last release
3 years ago

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>
0.1.12

3 years ago

0.1.10

3 years ago

0.1.7

3 years ago

0.1.9

3 years ago

0.1.6

3 years ago

0.1.5

3 years ago

0.1.3

3 years ago

0.1.2

3 years ago

0.1.1

3 years ago

0.1.0

3 years ago