This project is now officialy deprecated. We've separated it into multiple different modules:
-
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
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`}
/>
Additionally, take a look at the example/ folder to view the implementation & run the RNE expo app locally.