# react-native-ui-lib **Repository Path**: shaojunye/react-native-ui-lib ## Basic Information - **Project Name**: react-native-ui-lib - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-12-04 - **Last Updated**: 2025-12-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README [![SWUbanner](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/banner-direct.svg)](https://stand-with-ukraine.pp.ua)

UI Toolset & Components Library for React Native

--- [![Build Status](https://github.com/wix/react-native-ui-lib/blob/master/ios/rnuilib/Images.xcassets/AppIcon.appiconset/20.png?raw=true)](https://buildkite.com/wix-mobile-oss/react-native-ui-lib) [![npm](https://img.shields.io/npm/v/react-native-ui-lib.svg)](https://www.npmjs.com/package/react-native-ui-lib) [![NPM Downloads](https://img.shields.io/npm/dm/react-native-ui-lib.svg?style=flat)](https://www.npmjs.com/package/react-native-ui-lib) Follow on Twitter ## Notes #### React Native New Arc We are working on upgrading our UI Library to support the new React Native Architecture. Currently, we support React Native 0.73, and we plan to support React Native 0.77 next. While we don’t have a timeline yet, this is part of our roadmap. ## Links - [Docs](https://wix.github.io/react-native-ui-lib/) - [Figma library](https://www.figma.com/community/file/1379775092983284111/rnui-library) - [Discord Channel](https://discord.gg/2eW4g6Z) Download our Expo demo app

(You will need the Expo App) or open link in your devices [expo ] [exp://exp.host/@vn.chemgio/rnuilib?release-channel=default](exp://exp.host/@vn.chemgio/rnuilib?release-channel=default) ## Installing See setup instructions [here](https://wix.github.io/react-native-ui-lib/docs/getting-started/setup). #### New Major Version 6.0 See [breaking changes](https://wix.github.io/react-native-ui-lib/docs/getting-started/v6) #### For React Native >= 0.60.0 please use `react-native-ui-lib` #### For React Native < 0.60.0 please use `react-native-ui-lib@^3.0.0` ## Create your own Design System in 3 easy steps ### Step 1 Load your foundations and presets (colors, typography, spacings, etc...) ```js // FoundationConfig.js import {Colors, Typography, Spacings} from 'react-native-ui-lib'; Colors.loadColors({ primaryColor: '#2364AA', secondaryColor: '#81C3D7', textColor: '##221D23', errorColor: '#E63B2E', successColor: '#ADC76F', warnColor: '##FF963C' }); Typography.loadTypographies({ heading: {fontSize: 36, fontWeight: '600'}, subheading: {fontSize: 28, fontWeight: '500'}, body: {fontSize: 18, fontWeight: '400'} }); Spacings.loadSpacings({ page: 20, card: 12, gridGutter: 16 }); ``` ### Step 2 Set default configurations to your components ```js // ComponentsConfig.js import {ThemeManager} from 'react-native-ui-lib'; // with plain object ThemeManager.setComponentTheme('Card', { borderRadius: 8 }); // with a dynamic function ThemeManager.setComponentTheme('Button', (props, context) => { // 'square' is not an original Button prop, but a custom prop that can // be used to create different variations of buttons in your app if (props.square) { return { borderRadius: 0 }; } }); ``` ### Step 3 Use it all together. Your configurations will be applied on uilib components so you can use them easily with [modifiers](https://wix.github.io/react-native-ui-lib/docs/foundation/modifiers). ```jsx // MyScreen.js import React, {Component} from 'react'; import {View, Text, Card, Button} from 'react-native-ui-lib'; class MyScreen extends Component { render() { return ( My Screen This is an example card ); } } ``` ## Contributing See [Contribution Guide](https://github.com/wix/react-native-ui-lib/blob/master/CONTRIBUTING.md)