Socket
Socket
Sign inDemoInstall

react-native-percentage-circle

Package Overview
Dependencies
6
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    react-native-percentage-circle

react native percentage circle and also be a progress bar


Version published
Weekly downloads
151
decreased by-0.66%
Maintainers
1
Install size
359 kB
Created
Weekly downloads
 

Readme

Source

react-native-percentage-circle

Twitter URL npm

React Native Version >= 0.25

React-Native-Percentage-Cirlce is a component which supports you define your percent and draw the circle.And also you can use it as a progress bar.And you can show some data in a circle you want.

react.js version

This is a screenshot of the Demo

Start

npm i react-native-percentage-circle --save


import PercentageCircle from 'react-native-percentage-circle';

//...

render() {
  <View>
    <PercentageCircle radius={35} percent={50} color={"#3498db"}></PercentageCircle>  
  </View>
   <View>
    <PercentageCircle radius={35} percent={50} color={"#3498db"}>
      <Image style={{width:20,height:20}} source={{require('your image')}} />
    </PercentageCircle>  
  </View>
}

Options

PropsTypeExampleDescription
colorstring'#000'the color of border
bgcolorstring'#e3e3e3'the background color of the circle
innerColorstring'#fff'the color of the inside of the circle
percentNumber30the percent you need
radiusNumber20how large the circle is
borderWidthNumber(default 2)5the width of percentage progress bar
textStyleArray{fontSize: 24, color: 'red'}define the style of the text which in the circle
childrenjsx<Text>123</Text>define the children component in the circle

Contributions

Your contributions and suggestions are welcome 😄😄😄

MIT License

Keywords

FAQs

Last updated on 03 May 2018

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc