Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/blueromans/reactnativeuikit
- Owner: blueromans
- Created: 2022-09-09T19:26:59.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-01-03T13:29:32.000Z (about 2 years ago)
- Last Synced: 2024-10-14T14:40:36.809Z (3 months ago)
- Topics: android, fabric, hermes, ios, java, javascript, kotlin, newarchitecture, npm-package, objective-c, react, react-native, typescript
- Language: TypeScript
- Homepage:
- Size: 3.53 MB
- Stars: 3
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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-cacheOr,
rm -rf node_modules
yarn
react-native start --reset-cache
```