Skip to content
This repository was archived by the owner on Apr 28, 2020. It is now read-only.

Latest commit

 

History

History
74 lines (52 loc) · 2.23 KB

File metadata and controls

74 lines (52 loc) · 2.23 KB

DEPRECATED

This project is now officialy deprecated. We've separated it into multiple different modules:

Get Started

Installation

  • If you want just the components, you need to add the plugin using

    npm install react-native-zero-ui --save

    or

    yarn add react-native-zero-ui

  • If you require to use full potential of the plugin, you need to add @shoutem/theme plugin as well. You can do it by typing

    npm install @shoutem/theme --save

    or

    yarn add @shoutem/theme

Usage

Start using the components

import { Button } from 'react-native-zero-ui';

<Button
  raised
  icon={{name: 'home', size: 32}}
  buttonStyle={{backgroundColor: 'red', borderRadius: 10}}
  textStyle={{textAlign: 'center'}}
  title={`Welcome to\nReact Native Zero UI`}
/>

Components Included

Documentation

View the full docs here

Demo App

Additionally, take a look at the example/ folder to view the implementation & run the RNE expo app locally.