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
- Host: GitHub
- URL: https://github.com/talebrafiepour/circularprogressstepper
- Owner: TalebRafiepour
- Created: 2019-08-18T12:04:37.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-09-06T20:30:48.000Z (about 6 years ago)
- Last Synced: 2024-12-28T13:47:30.954Z (9 months ago)
- Topics: andriod, circular, circularprog, coreanimation, coregraphics, kotlin, process, progress, progressbar, step, stepper
- Language: Kotlin
- Homepage:
- Size: 13.3 MB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)
```