Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/heliosilva/reactnative-brcomponentsrn
Componentes básicos Function Components para UI Design.
https://github.com/heliosilva/reactnative-brcomponentsrn
Last synced: 20 days ago
JSON representation
Componentes básicos Function Components para UI Design.
- Host: GitHub
- URL: https://github.com/heliosilva/reactnative-brcomponentsrn
- Owner: HelioSilva
- License: mit
- Created: 2019-10-27T16:49:49.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-05-10T18:59:27.000Z (over 3 years ago)
- Last Synced: 2024-11-19T10:56:48.536Z (about 1 month ago)
- Language: JavaScript
- Size: 23.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
BrComponentsRN
Basic components for react-native
## Intro
Components basics with props useful.## Why
Components have semantic names with html, which makes learning easier.
Ex:
``, ``.
Some properties :
* *flex*
* *Middle*
* *Bottom*
* *Top*
* *Row*
* *Bg*
* *vh*
* *vw*
* *Style={{ props natives View(Component Native) }}*## How
Just import lib like this: import {BrContent} from brcomponents';
## Install
```sh
npm install --save brcomponentsrn
```## Usage
```js
import {BrContent} from 'brcomponentsrn';// ...
export default function Login() {
return (
BRComponentsRN
Esqueci a senha
Não tem conta?
Crie aqui!
);
}
```