All Projects → SmallStoneSK → Rn Components Kit

SmallStoneSK / Rn Components Kit

Licence: mit
A series of commonly used react-native components

Projects that are alternatives of or similar to Rn Components Kit

Awesome Ui Component Library
Curated list of framework component libraries for UI styles/toolkit
Stars: ✭ 702 (+788.61%)
Mutual labels:  ui-kit, ui-components
Ui Box
Blazing Fast React UI Primitive
Stars: ✭ 847 (+972.15%)
Mutual labels:  component, ui-components
Ui Libraries
A collection of UI Frameworks and their platform implementations.
Stars: ✭ 769 (+873.42%)
Mutual labels:  ui-kit, ui-components
Uiw
⚛️ @uiwjs A high quality UI Toolkit, A Component Library for React 16+.
Stars: ✭ 531 (+572.15%)
Mutual labels:  ui-kit, ui-components
Vuestic Admin
Free and Beautiful Vue 3 Admin Template
Stars: ✭ 8,398 (+10530.38%)
Mutual labels:  ui-kit, ui-components
Primitives
An open-source UI component library for building high-quality, accessible design systems and web apps. Maintained by @modulz.
Stars: ✭ 644 (+715.19%)
Mutual labels:  ui-kit, ui-components
Base
React-UI-Kit - frontend library with ReactJS components
Stars: ✭ 18 (-77.22%)
Mutual labels:  ui-kit, ui-components
Svelte Materialify
A Material UI Design Component library for Svelte heavily inspired by vuetify.
Stars: ✭ 351 (+344.3%)
Mutual labels:  ui-kit, ui-components
Gomponents
Declarative view components in Go, that can render to HTML5.
Stars: ✭ 49 (-37.97%)
Mutual labels:  component, ui-components
Vuetify
🐉 Material Component Framework for Vue
Stars: ✭ 33,085 (+41779.75%)
Mutual labels:  ui-kit, ui-components
Toastnotifications
Toast notifications for WPF allows you to create and display rich notifications in WPF applications. It's highly configurable with set of built-in options like positions, behaviours, themes and many others. It's extendable, it gives you possibility to create custom and interactive notifications in simply manner.
Stars: ✭ 507 (+541.77%)
Mutual labels:  component, ui-components
React Native Elements App
Demo app for React Native Elements (w/ React Native Web)
Stars: ✭ 1,159 (+1367.09%)
Mutual labels:  ui-kit, ui-components
Vue Swatches
🎨 Help the user picking beautiful colors!
Stars: ✭ 456 (+477.22%)
Mutual labels:  component, ui-components
Atui
A Vue.js 2.0 UI Toolkit for Web
Stars: ✭ 674 (+753.16%)
Mutual labels:  ui-kit, ui-components
Daisyui
⭐️ ⭐️ ⭐️ ⭐️ ⭐️  Tailwind Components
Stars: ✭ 382 (+383.54%)
Mutual labels:  ui-kit, ui-components
Sugui Design System
A design system template for the SugUI components library based on styleguidist
Stars: ✭ 17 (-78.48%)
Mutual labels:  ui-kit, ui-components
Mint Ui
Mobile UI elements for Vue.js
Stars: ✭ 16,471 (+20749.37%)
Mutual labels:  ui-kit, component
Windows 95 Ui Kit
💾 Windows 95 UI Kit made with Bootstrap 4 components
Stars: ✭ 294 (+272.15%)
Mutual labels:  ui-kit, ui-components
Elm Ui
UI library for making web applications with Elm
Stars: ✭ 878 (+1011.39%)
Mutual labels:  ui-kit, ui-components
Snackui
SnackUI 🍑 - the final React style library. With an *optimizing compiler* that lets you write views naturally, with easier DX, working on native and web at once, all while being faster than hand-rolling your own CSS.
Stars: ✭ 55 (-30.38%)
Mutual labels:  ui-kit, ui-components

rn-components-kit

English | 中文

A series of commonly used react-native components.

Quick Start

Installation

You can install rn-components-kit by following:

npm install rn-components-kit --save
import React from 'react';
import {Badge} from ' @rn-components-kit/badge';

const TestComponent = () => <Badge/>;

Import On Demand

The above usage would import whole components into bundle even if you have not use all of them. However, if you want to import component on demand, you can do like following:

npm install @rn-components-kit/badge --save
import React from 'react';
import {Badge} from ' @rn-components-kit/badge';

const TestComponent = () => <Badge/>;

In fact, we recommend you to adopt this usage.

Running Examples

We create an app to provide many examples for each component, you can look at them at here. If you want to run it, you should clone this repo at first.

git clone https://github.com/SmallStoneSK/rn-components-kit.git

npm install

# for iOS
react-native run-ios

# for android
react-native run-android

Following are screenshots for each component's examples:

Components

component Link version
badge Document NPM version
button Document NPM version
carousel Document NPM version
checkbox Document NPM version
deck-swiper Document NPM version
divider Document NPM version
icon Document NPM version
progress Document NPM version
radio Document NPM version
rating Document NPM version
scroll-picker Document NPM version
skeleton Document NPM version
slider Document NPM version
spin Document NPM version
swipe-out Document NPM version
switch Document NPM version
tag Document NPM version
text Document NPM version
tooltip Document NPM version

FAQ

Q: If you encounter the problem like No component found for view with name "ARTXXX", that's because the ART module has not been integrated in your project.

A: You should:

  1. Use Xcode to open your ios project, Libraries -> Add Files to -> node_modules/react-native/Libraries/ART/ART.xcodeproj.
  2. Click the root of project, find Linked Frameworks and Libraries, click + to add libART.a and rebuild the project.
  3. After having rebuilded, re-run command react-native run-ios/android to start your project.

License

MIT LICENSE

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].