Gathering detailed insights and metrics for react-native-android-circles
Gathering detailed insights and metrics for react-native-android-circles
Gathering detailed insights and metrics for react-native-android-circles
Gathering detailed insights and metrics for react-native-android-circles
A react native android package to show a circle progress view
npm install react-native-android-circles
Typescript
Module System
Node Version
NPM Version
Java (82.3%)
JavaScript (17.7%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
17 Stars
26 Commits
15 Forks
1 Watchers
1 Branches
4 Contributors
Updated on Mar 09, 2023
Latest Version
0.3.0
Package Id
react-native-android-circles@0.3.0
Size
4.45 kB
NPM Version
5.0.3
Node Version
8.1.3
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
1
A react native android module to show a circle progress view based on [Circle-Progress-View] (https://github.com/jakob-grabner/Circle-Progress-View).
1 npm i --save react-native-android-circles
android/build.gradle
1... 2allprojects { 3 ... 4 repositories { 5 ... 6 maven { url "https://jitpack.io" } 7 } 8 ... 9 10}
android/settings.gradle
1... 2include ':react-native-android-circles' 3project(':react-native-android-circles').projectDir = new File(settingsDir, '../node_modules/react-native-android-circles')
android/app/build.gradle
1... 2dependencies { 3 ... 4 compile project(':react-native-android-circles') 5}
1import com.kwaak.reacttwo.CirclesPackage; // <--- import 2 3public class MainActivity extends Activity implements DefaultHardwareBackBtnHandler { 4 5 ...... 6 private static Activity mActivity = null; 7 8 @Override 9 protected void onCreate(Bundle savedInstanceState) { 10 super.onCreate(savedInstanceState); 11 mReactRootView = new ReactRootView(this); 12 13 mActivity = this; 14 mReactInstanceManager = ReactInstanceManager.builder() 15 .setApplication(getApplication()) 16 .setBundleAssetName("index.android.bundle") 17 .setJSMainModuleName("index.android") 18 .addPackage(new MainReactPackage()) 19 .addPackage(new CirclesPackage()) // <------- add package 20 .setUseDeveloperSupport(BuildConfig.DEBUG) 21 .setInitialLifecycleState(LifecycleState.RESUMED) 22 .build(); 23 24 mReactRootView.startReactApplication(mReactInstanceManager, "ExampleRN", null); 25 26 setContentView(mReactRootView); 27 } 28 29 ...... 30 31}
1var Circles = require('react-native-android-circles'); 2 3 <Circles 4 style={{width: 250, height: 250}}} 5 сontourColor="#f4f4f4" 6 rimColor="#f4f4f4" 7 barColors={["#15e064", "#17aecc", "#15e064"]} 8 value={90} 9 maxValue={100} 10 сontourSize={280} 11 rimWidth={120} 12 barWidth={100} 13 animated={true} 14 /> 15
barColors: PropTypes.array,
barWidth: PropTypes.number,
blockCount: PropTypes.number,
blockScale: PropTypes.number,
contourColor: PropTypes.string,
textColor: PropTypes.string,
contourSize: PropTypes.number,
delayMillis: PropTypes.number,
fillColor: PropTypes.string,
value: PropTypes.number,
maxValue: PropTypes.number,
rimColor: PropTypes.string,
rimWidth: PropTypes.number,
spinSpeed: PropTypes.number,
startAngle: PropTypes.number,
textScale: PropTypes.number,
textSize: PropTypes.number,
unit: PropTypes.string,
unitVisible: PropTypes.bool,
unitColor: PropTypes.string,
unitScale: PropTypes.number,
unitSize: PropTypes.number,
animated: PropTypes.bool,
text: PropTypes.string,
textMode: PropTypes.oneOf(['text', 'value', 'percent']),
.spin()
.stopSpinning()
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
Found 4/23 approved changesets -- score normalized to 1
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
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
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