An open API service indexing awesome lists of open source software.

https://github.com/omdxp/sizedbox

A component for react-native app that add vertical or horizontal space on your screen, similar to Flutter's SizedBox widget!
https://github.com/omdxp/sizedbox

android ios react-native react-native-component windows

Last synced: 3 months ago
JSON representation

A component for react-native app that add vertical or horizontal space on your screen, similar to Flutter's SizedBox widget!

Awesome Lists containing this project

README

          

# SizedBox

A component for react-native app that add vertical or horizontal space on your screen, similar to Flutter's SizedBox widget!

## More details

- This component help adding vertical or horizontal spaces between components.
- Flutter's widget "SizedBox" was the inspiration to create this `react-native` component.

## Installation

Use the [npm](https://www.npmjs.com/package/sizedbox) package manager to install sizedbox :

```bash
npm i sizedbox
```

Or you can use `yarn` :

```bash
yarn add sizedbox
```

## How to use

```javascript
import {SizedBox} from 'sizedbox';

// this is to add a vertical space of 10px

// this is to add a horizontal space of 20px

```

## Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.