
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
react-native-circles
Advanced tools
React native Circle and Arc component that displays array of arcs in a circle.

npm install react-native-circles
This library uses react-native-svg to render its graphs. Therefore this library needs to be installed AND linked into your project to work.
Other than the above dependency this library uses pure javascript and supports both iOS and Android
import React from 'react';
import { View } from 'react-native';
import { MultiArcCircle } from 'react-native-circles';
export default class CircleExample extends React.Component {
render() {
return (
<View style={{
flex: 1,
justifyContent: 'center',
alignItems: 'center'
}}>
<MultiArcCircle
radius={100}
intervals={[
{ start: 30, end: 90 },
{ start: 120, end: 300 }
]}
color='orange'
backgroundColor='#f7f7f7'
width={4}
/>
</View>
);
}
}
| Name | Description |
|---|---|
| width | width of the ring |
| radius | radius of the ring |
| color | color for arcs that are described by intervals props |
| backgroundColor | color of the ring |
| intervals | Array of objects({ start: angle, end: angle }) that describe arcs |
FAQs
React Native multi progress ring and arc component
The npm package react-native-circles receives a total of 25 weekly downloads. As such, react-native-circles popularity was classified as not popular.
We found that react-native-circles demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.