React Native Progress Circle Chart Example

Jun 21, 2021 . Admin

Hello Dev,

Today,I will learn you how to use progress circle chart in react native. We will show example of progress circle chart in react native. You can easliy create react native progress circle chart. First i will import progress circleChart namespace from react-native-svg-charts, after I will make progress circle chart using in react native.

Step 1 - Create project

In the first step Run the following command for create project.

expo init MyWebtuts 
Step 2 - Installation of Dependency

In the step, Run the following command for installation of dependency.

To use progress circleChart you need to install react-native-svg-chartss package.

To install this open the terminal and jump into your project

cd paper MyWebtuts 
Run the following command
yarn add react-native-svg-charts
after install d3-shape package for shape.
yarn add d3-shape
Next, I will in install react-native-paper for App bar.
yarn add react-native-paper
Step 3 - App.js

In this step, You will open App.js file and put the code.

import React, { Component } from "react";
import { View,StyleSheet,Text} from 'react-native';
import { Provider ,Appbar,Card} from 'react-native-paper';
import { ProgressCircle } from 'react-native-svg-charts';
import * as shape from 'd3-shape';

const MyWebtutsComponent = () => {
      
    const _goBack = () => console.log('Went back');

    const _handleSearch = () => console.log('Searching');

    const _handleMore = () => console.log('Shown more');

    return (
      <Provider>
          <Appbar.Header style={styles.header}>
            <Appbar.BackAction onPress={_goBack} />
            <Appbar.Content title="MyWebtuts" subtitle="Subtitle" />
            <Appbar.Action icon="magnify" onPress={_handleSearch} />
            <Appbar.Action icon="dots-vertical" onPress={_handleMore} />
          </Appbar.Header>
          <View style={styles.mainbox}>
            <Text style={styles.title}>React Native Progress Circle Chart Example</Text>
            <Card style={styles.cardbox}>
               <ProgressCircle style={{ height: 250 }} progress={0.8} progressColor={'rgb(65, 140, 0)'} >
               </ProgressCircle>
             </Card>
          </View>
      </Provider>
    );
  };


const styles = StyleSheet.create({
    mainbox:{
      textAlign:'center',
      margin: 15,
      justifyContent: 'space-between',
    },
    title:{
      fontSize: 16
    },
    cardbox:{
      marginTop: 10,
      padding: 15,
    }
});
export default MyWebtutsComponent;
Step 3 - Run project

In the last step run your project using bellow command.

expo start
Output

It will help you...

#React Native