Skip to content

Commit

Permalink
Merge pull request #26 from zTrap/patch-2
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
mancj committed May 30, 2017
2 parents 0be03e7 + 1529960 commit cce747e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
@@ -1,6 +1,7 @@
# SlideUp-Android
SlideUp is a small library that allows you to add sweet slide effect to any view. Slide your views up, down, left or right with SlideUp!

[![Release](https://jitpack.io/v/mancj/SlideUp-Android.svg)](https://jitpack.io/#mancj/SlideUp-Android)
---

<img src="https://github.com/mancj/mancj.github.io/blob/master/other/slideup-art/art1.gif" width="300">
Expand All @@ -23,7 +24,7 @@ allprojects {
Add the dependency
```groovy
dependencies {
compile 'com.github.mancj:SlideUp-Android:2.2.3'
compile 'com.github.mancj:SlideUp-Android:2.2.4'
}
```

Expand Down Expand Up @@ -64,7 +65,7 @@ fab = (FloatingActionButton) findViewById(R.id.fab);


slideUp = new SlideUp.Builder(slideView)
.withListeners(new SlideUp.Listener() {
.withListeners(new SlideUp.Listener.Events() {
@Override
public void onSlide(float percent) {
dim.setAlpha(1 - (percent / 100));
Expand Down

0 comments on commit cce747e

Please sign in to comment.