An open API service indexing awesome lists of open source software.

https://github.com/talebrafiepour/circularprogressstepper

Rounded Android Progress Bar For Show Steps Of A Proccess
https://github.com/talebrafiepour/circularprogressstepper

andriod circular circularprog coreanimation coregraphics kotlin process progress progressbar step stepper

Last synced: 6 months ago
JSON representation

Rounded Android Progress Bar For Show Steps Of A Proccess

Awesome Lists containing this project

README

          

# CircularProgressStepper
Rounded Android Progress Bar For Show Steps Of A Proccess

## 1.setup
Add the JitPack repository to your build file;\n
Add it in your root build.gradle at the end of repositories:

```
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
```

-------------------------------------

Add the dependency
```
dependencies {
implementation 'com.github.TalebRafiepour:CircularProgressStepper:0.1'
}

```
## 2.usage

```

```
And you can also add custom image to steps in code:
```
private val stepsSrc = arrayOf(R.drawable.ic_one,R.drawable.ic_two,R.drawable.ic_three,
R.drawable.ic_four,R.drawable.ic_five)

cpsStepper.setStepsImgSrc(stepsSrc)
```