Socket
Book a DemoInstallSign in
Socket

nativescript-animated-circle

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nativescript-animated-circle

Animated circle progress in your NativeScript applications.

latest
npmnpm
Version
1.2.0
Version published
Maintainers
1
Created
Source

nativescript-animated-circle

npm npm

NPM

Creates an animated circle (animates the border of the circle) on iOS and Android.

iOSAndroid

Installation

tns plugin add nativescript-animated-circle

Usage

<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="80"
        text="bam"
        textSize="28"
        textColor="red" />
</Page>

Angular

To use this plugin in Angular, please register the element above your AppModule declaration.

import { registerElement } from 'nativescript-angular/element-registry'

registerElement('AnimatedCircle', () => require('nativescript-animated-circle').AnimatedCircle);

Then you can leverage the plugin using <AnimatedCircle></AnimatedCircle> in your templates.

API

PropertyDefaultDescription
rimColor#FF5722The filled portion of the circle border's color.
barColor#3D8FF4The remaining (unfilled) portion of the circle border.
clockwisetrueThe CW (true) or CCW (false) draw direction.
rimWidth5The border radius of the circle.
progress0The current progress value.
startAngle0The angle to start drawing from.
endAngle100iOS only the end angle to stop drawing at.
animatedfalseAndroid only animation status.
animateFrom0Android only the progress value to animate from.
animationDuration1000Android only the duration to animate for.
text""The text inside of the circle.
textSize0Text size, 0 will hide the text
textColor#ff0000Text color

Available for Contract

Need velocity on your NativeScript projects? I'm available to build beautiful and performant NativeScript applications for your business requirements. Email me direct: sean@devonite.com to discuss project details.

License

Apache License Version 2.0, January 2004

Keywords

ecosystem:nativescript

FAQs

Package last updated on 21 Mar 2019

Did you know?

Socket

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.

Install

Related posts