react-native-latest-percentage-circle
TypeScript icon, indicating that this package has built-in type declarations

1.0.8 • Public • Published

react-native-latest-percentage-circle

Twitter URL npm

React Native Version >= 0.25

React-Native-Latest-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-latest-percentage-circle --save
or

yarn add react-native-latest-percentage-circle
import PercentageCircle from 'react-native-latest-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

Props Type Example Description
color string '#000' the color of border
bgcolor string '#e3e3e3' the background color of the circle
innerColor string '#fff' the color of the inside of the circle
percent Number 30 the percent you need
radius Number 20 how large the circle is
borderWidth Number(default 2) 5 the width of percentage progress bar
textStyle Array {fontSize: 24, color: 'red'} define the style of the text which in the circle
children jsx <Text>123</Text> define the children component in the circle

Contributions

Your contributions and suggestions are welcome 😄😄😄

MIT License

Package Sidebar

Install

npm i react-native-latest-percentage-circle

Weekly Downloads

2

Version

1.0.8

License

ISC

Unpacked Size

10.9 kB

Total Files

5

Last publish

Collaborators

  • dev_waleed