Skip to content

Commit 8799932

Browse files
authored
Create README.md
1 parent 9e84a4b commit 8799932

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

README.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Android Nested Progress
2+
Nested Customizable Progress For Anroid
3+
4+
[![](https://jitpack.io/v/emreesen27/Android-Nested-Progress.svg)](https://jitpack.io/#emreesen27/Android-Nested-Progress)
5+
6+
#### Add this in your root build.gradle file
7+
```gradle
8+
allprojects {
9+
repositories {
10+
...
11+
maven { url 'https://jitpack.io' }
12+
}
13+
}
14+
```
15+
#### Add this to your module's build.gradle file
16+
```gradle
17+
dependencies {
18+
implementation 'com.github.emreesen27:Android-Nested-Progress:v1.0.0'
19+
}
20+
```
21+
22+
#### Different Combinations
23+
<img src="https://github.com/emreesen27/Android-Nested-Progress/blob/assets/example.gif?raw=true"/>
24+
25+
#### Usage
26+
* Add view into your layout file
27+
28+
```xml
29+
<com.sn.lib.NestedProgress
30+
android:layout_width="wrap_content"
31+
android:layout_height="wrap_content"
32+
app:innerAnimInterpolator="linear"
33+
app:outerAnimInterpolator="overshoot"
34+
app:outerLoaderAnimDuration="1500" />
35+
36+
```

0 commit comments

Comments
 (0)