ReactNativeUiKit

A flexible and easy way to manage ui Android and IOS over React Native

Downloads
132
Stars
3

React Native Ui Kit

A flexible and easy way to manage ui Android and IOS!

Installation

With react-native-cli

  1. Install library

    from npm

    npm install @blueromans/react-native-ui-kit
    

    from yarn

    yarn add @blueromans/react-native-ui-kit
    
  2. Link native code

    cd ios && pod install
    

Getting Started

Refer to the getting started guide for instructions.

Documentation

Check the components and their usage in our documentation.

Author

Troubleshooting

If you have build errors, then it might be caused by caching issues, please try:

watchman watch-del-all
rm -fr $TMPDIR/react-*
react-native start --reset-cache

Or,

rm -rf node_modules
yarn
react-native start --reset-cache