PieProgress
 Introduction:  Pie Progress is a type of circular progress view similar to the one that you can find in iOS devices while updating applications. It's a simple to use library where the progress gets updated by passing values to a single method.
 Tags:  

What is Pie Progress?
Pie Progress is a type of circular progress view similar to the one that you can find in iOS devices while updating applications. It's a simple to use library where the progress gets updated by passing values to a single method.
Implementation
[1] In your app module gradle file
dependencies {
    implementation 'com.github.tizisdeepan:pieprogress:1.0.1'
}
[2] In your project level gradle file
allprojects {
    repositories {
        maven { url 'https://jitpack.io' }
    }
}
[3] Use PieProgress in your layout.xml
<com.deepan.pieprogress.PieProgress
            android:id="@+id/pieProgress"
            android:layout_width="100dp"
            android:layout_height="100dp"
            app:progressColor="@color/white"/>
[4] Set progress of PieProgress from your activity
    //setProgress(progress: Float)
    pieProgress.setProgress(progress)
Voila! You have implemented an awesome Pie Progress for your Android Project now!
Developed By
- Deepan Elango - tizisdeepan@gmail.com
 
 
