Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
RomanTcv committed Mar 24, 2018
1 parent ba4386c commit 76de418
Showing 1 changed file with 24 additions and 1 deletion.
25 changes: 24 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# MaterialSeekBar

[![](https://jitpack.io/v/R12rus/MaterialSeekBar.svg)](https://jitpack.io/#R12rus/MaterialSeekBar)
[![GitHub license](https://img.shields.io/github/license/mashape/apistatus.svg)](https://opensource.org/licenses/MIT)

# Installation
To get a Git project into your build:

Step 1. Add the JitPack repository to your build file
```
allprojects {
Expand All @@ -9,9 +15,26 @@ Step 1. Add the JitPack repository to your build file
}
}
```


Step 2.
```
dependencies {
compile 'com.github.R12rus:MaterialSeekBar:0.0.1'
}
```

<p align="center">
<img src="/images/example.gif?raw=true" width="480" height="640" />
</p>

# Usage
Example of usage in xml layout
```
<r12.materialseekbar.MaterialSeekBar
android:id="@+id/seekbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="10dp"
app:alwaysShowBubble="false"
app:showMinMax="true" />
```

0 comments on commit 76de418

Please sign in to comment.