Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/blueromans/reactnativeuikit

A flexible and easy way to manage ui Android and IOS over React Native
https://github.com/blueromans/reactnativeuikit

android fabric hermes ios java javascript kotlin newarchitecture npm-package objective-c react react-native typescript

Last synced: 3 months ago
JSON representation

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

Awesome Lists containing this project

README

        

React Native Ui Kit

# React Native Ui Kit

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

[![npm](https://img.shields.io/npm/v/@blueromans/react-native-ui-kit)](https://www.npmjs.com/package/@blueromans/react-native-ui-kit) ![Supports Android,iOS](https://img.shields.io/badge/platforms-android%20%7C%20ios-lightgrey.svg) [![NPM](https://img.shields.io/npm/dm/@blueromans/react-native-ui-kit)](https://www.npmjs.com/package/@blueromans/react-native-ui-kit)
![MIT License](https://img.shields.io/npm/l/@blueromans/react-native-ui-kit.svg)

## Installation

### With react-native-cli

1. Install library

from npm

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

from yarn

```bash
yarn add @blueromans/react-native-ui-kit
```

2. Link native code

```bash
cd ios && pod install
```

## Getting Started

Refer to the [getting started guide](https://www.reactnativeuikit.com) for instructions.

## Documentation

Check the components and their usage in our [documentation](https://www.reactnativeuikit.com/docs/category/components).

## Author

- [Yasar Ozyurt](https://www.yasarozyurt.com)

## Troubleshooting

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

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

Or,

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