Gathering detailed insights and metrics for rn-progress-button
Gathering detailed insights and metrics for rn-progress-button
Gathering detailed insights and metrics for rn-progress-button
Gathering detailed insights and metrics for rn-progress-button
npm install rn-progress-button
Typescript
Module System
Node Version
NPM Version
JavaScript (45.27%)
Objective-C (30.71%)
Python (13.19%)
Java (10.82%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
1 Stars
5 Commits
1 Watchers
1 Branches
1 Contributors
Updated on Jul 29, 2019
Latest Version
0.0.5
Package Id
rn-progress-button@0.0.5
Unpacked Size
273.65 kB
Size
112.23 kB
File Count
20
NPM Version
6.4.1
Node Version
8.12.0
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
2
2
4
Awesome progress button made in React Native.
yarn add rn-progress-button
or npm install rn-progress-button
First of all, you should import this package into your file.
import RNProgressButton from "rn-progress-button"
After this, you only need to use it :)
1<RNProgressButton />
Prop | Default | Type | Description |
---|---|---|---|
completed | 85% | string | How much of the process is already completed. |
onPress | () => {} | func | Function that will be executed by clicking the main button (next). |
secondaryOption | {} | object | If we are in 100% of the process and there is a value for this props, a new secondary button will be rendered. |
renderLabel | (labelColor, label) => {...} | func | Method used to render the button label. |
renderIcon | (isActive) => {...} | bool | Method used to render the button icon. |
finishLabel | Finish | string | Label button when the process is at 100% |
nextLabel | Next Step | string | Label button when the process is not yet at 100% |
completedColor | #7E1FB7 | string | Background and label color of the completed part |
incompletedColor | #EDEFEF | string | Background and label color of the incompleted part |
Example:
1<RNProgressButton 2 completed="40%" 3 completedColor="red" 4 incompletedColor="white" 5 renderLabel={(labelColor, label) => { 6 return <Text style={{ color: labelColor }}>{label}</Text>; 7 }} 8 renderIcon={isActive => { 9 const isActiveImage = isActive 10 ? require('@assets/images/icons/icContinueOff.png') 11 : require('@assets/images/icons/icContinue.png'); 12 13 return <Image source={isActiveImage}; 14 }} 15 onPress={() => {}} 16/>
No vulnerabilities found.
Reason
binaries present in source code
Details
Reason
no SAST tool detected
Details
Reason
Found 0/5 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
security policy file not detected
Details
Reason
license file not detected
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
79 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