Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@nativescript/animated-circle
Advanced tools
Animated circle progress in your NativeScript applications.
A plugin that creates a circular progress bar on iOS and Android.
Android | iOS |
npm install @nativescript/animated-circle
xmlns
attribute providing your prefix( ui
, for example).<Page xmlns:ui="@nativescript/animated-circle">
AnimatedCircle
view through the prefix.<ui:AnimatedCircle ... />
<Page xmlns="http://schemas.nativescript.org/tns.xsd"
xmlns:ui="@nativescript/animated-circle">
<ui:AnimatedCircle
backgroundColor="transparent"
width="200"
height="200"
animated="true"
animateFrom="0"
rimColor="#FF5722"
barColor="#3D8FF4"
fillColor="#eee"
clockwise="true"
rimWidth="5"
progress="{{ circleProgress }}"
text="{{ circleProgress + '%'}}"
textSize="28"
textColor="red" />
</Page>
NativeScriptAnimatedCircleModule
to the module imports where you want to use the view.import { NativeScriptAnimatedCircleModule } from '@nativescript/animated-circle/angular';
imports: [NativeScriptAnimatedCircleModule];
<AnimatedCircle backgroundColor="transparent" width="200" height="200" animated="true" animateFrom="0" rimColor="#fff000" barColor="#ff4081" rimWidth="25" [progress]="circleProgress" [text]="progress + '%'" textSize="22" textColor="#336699"></AnimatedCircle>
app.ts
file.import { registerElement } from 'nativescript-vue';
registerElement("AnimatedCircle", ()=> require("@nativescript/animated-circle").AnimatedCircle)
.vue
file.<AnimatedCircle
backgroundColor="transparent"
width="200"
height="200"
animated="true"
animateFrom="0"
rimColor="#FF5722"
barColor="#3D8FF4"
fillColor="#eee"
clockwise="true"
rimWidth="5"
:progress="progress"
:text="progress + '%'"
textSize="28"
textColor="red" />
app.ts
file.import {registerNativeViewElement} from "svelte-native/dom"
registerNativeViewElement("animatedCircle", ()=> require("@nativescript/animated-circle").AnimatedCircle)
<animatedCircle
backgroundColor="transparent"
width="200"
height="200"
animated="true"
animateFrom="0"
rimColor="#C4BF55"
barColor="#000"
clockwise="true"
rimWidth="20"
progress={ circleProgress }
text="80%"
textSize="28"
textColor="red"
/>
app.ts
file.interface AnimatedCircleAttributes extends ViewAttributes {
progress?: number
animated?: boolean
animateFrom?: number
text?: string
textSize? : number
textColor?: string
rimColor? : string
barColor?: string
rimWidth?: number
clockwise?: boolean
}
declare global {
module JSX {
interface IntrinsicElements {
animatedCircle: NativeScriptProps<AnimatedCircleAttributes, AnimatedCircle>
}
}
}
registerElement("animatedCircle", ()=> require("@nativescript/animated-circle").AnimatedCircle)
<stackLayout marginTop={30}>
<animatedCircle
backgroundColor="transparent"
width={200}
height={200}
animated={true}
animateFrom={0}
rimColor="#000"
barColor="#C4BF55"
clockwise={true}
rimWidth={20}
progress={this.state.progress}
text={this.state.progress + '%'}
textSize={28}
textColor="#000"
/>
</stackLayout>
Property | Type | Default | Description |
---|---|---|---|
rimColor | Color | #FF5722 | The filled portion of the circle border's color. |
barColor | Color | #3D8FF4 | The remaining (unfilled) portion of the circle border. |
rimWidth | number | 5 | The border radius of the circle. |
progress | number | 0 | The current progress value. |
startAngle | number | 0 | The angle to start drawing from. |
endAngle | number | 100 | iOS only the end angle to stop drawing at. |
animated | boolean | false | Android only animation status. |
animateFrom | number | 0 | Android only the progress value to animate from. |
animationDuration | number | 1000 | Android only the duration to animate for. |
text | string | "" | The text inside of the circle. |
textSize | number | 0 | Text size, 0 will hide the text |
textColor | Color | #ff0000 | Text color |
Apache License Version 2.0
FAQs
Animated circle progress in your NativeScript applications.
The npm package @nativescript/animated-circle receives a total of 71 weekly downloads. As such, @nativescript/animated-circle popularity was classified as not popular.
We found that @nativescript/animated-circle demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.