Gathering detailed insights and metrics for react-native-ui-lib
Gathering detailed insights and metrics for react-native-ui-lib
Gathering detailed insights and metrics for react-native-ui-lib
Gathering detailed insights and metrics for react-native-ui-lib
react-native-bouncy-checkbox
Fully customizable animated bouncy checkbox for React Native
react-native-big-list
A big and fast list implementation for react-native with a recycler API focused on performance and ram usage while processing thousand items on the list.
blipui-react-native
React Native Component Library with Blip UI Elements.
spons-react-native-ui
ui lib for spons
npm install react-native-ui-lib
Typescript
Module System
Min. Node Version
Node Version
NPM Version
TypeScript (70.71%)
JavaScript (20.5%)
Objective-C (4.14%)
Java (3.16%)
SCSS (0.46%)
CSS (0.39%)
Objective-C++ (0.25%)
Ruby (0.16%)
Kotlin (0.11%)
Shell (0.08%)
HTML (0.04%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
6,876 Stars
4,629 Commits
734 Forks
319 Watchers
281 Branches
188 Contributors
Updated on Jul 14, 2025
Latest Version
7.44.0
Package Id
react-native-ui-lib@7.44.0
Unpacked Size
2.51 MB
Size
645.58 kB
File Count
1,247
NPM Version
10.8.2
Node Version
20.19.3
Published on
Jun 25, 2025
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
16
5
68
UI Toolset & Components Library for React Native
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.
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
See setup instructions here.
See breaking changes
please use react-native-ui-lib
please use react-native-ui-lib@^3.0.0
Load your foundations and presets (colors, typography, spacings, etc...)
1// FoundationConfig.js
2
3import {Colors, Typography, Spacings} from 'react-native-ui-lib';
4
5Colors.loadColors({
6 primaryColor: '#2364AA',
7 secondaryColor: '#81C3D7',
8 textColor: '##221D23',
9 errorColor: '#E63B2E',
10 successColor: '#ADC76F',
11 warnColor: '##FF963C'
12});
13
14Typography.loadTypographies({
15 heading: {fontSize: 36, fontWeight: '600'},
16 subheading: {fontSize: 28, fontWeight: '500'},
17 body: {fontSize: 18, fontWeight: '400'}
18});
19
20Spacings.loadSpacings({
21 page: 20,
22 card: 12,
23 gridGutter: 16
24});
Set default configurations to your components
1// ComponentsConfig.js
2
3import {ThemeManager} from 'react-native-ui-lib';
4
5// with plain object
6ThemeManager.setComponentTheme('Card', {
7 borderRadius: 8
8});
9
10// with a dynamic function
11ThemeManager.setComponentTheme('Button', (props, context) => {
12 // 'square' is not an original Button prop, but a custom prop that can
13 // be used to create different variations of buttons in your app
14 if (props.square) {
15 return {
16 borderRadius: 0
17 };
18 }
19});
Use it all together. Your configurations will be applied on uilib components so you can use them easily with modifiers.
1// MyScreen.js 2 3import React, {Component} from 'react'; 4import {View, Text, Card, Button} from 'react-native-ui-lib'; 5 6class MyScreen extends Component { 7 render() { 8 return ( 9 <View flex padding-page> 10 <Text heading marginB-s4> 11 My Screen 12 </Text> 13 <Card height={100} center padding-card marginB-s4> 14 <Text body>This is an example card </Text> 15 </Card> 16 17 <Button label="Button" body bg-primaryColor square></Button> 18 </View> 19 ); 20 } 21}
No vulnerabilities found.
Reason
30 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
binaries present in source code
Details
Reason
Found 20/24 approved changesets -- score normalized to 8
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
20 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More