We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1529e12 commit 69733a0Copy full SHA for 69733a0
README.md
@@ -3,6 +3,24 @@ Simple Android Segment Control cloned from iOS 13
3
4
<img src="https://raw.githubusercontent.com/trinnguyen/Android-SegmentView/master/segment_view_sample.jpg" alt="Sample Android SegmentView" width="360"/>
5
6
+## Usage in Android Gradle Module using JitPack.io
7
+- Add it in your root `build.gradle` at the end of repositories:
8
+```
9
+allprojects {
10
+ repositories {
11
+ ...
12
+ maven { url 'https://jitpack.io' }
13
+ }
14
+}
15
16
+
17
+- Add the dependency to module's build.gradle
18
19
+dependencies {
20
+ ....
21
+ implementation 'com.github.trinnguyen:Android-SegmentView:master-SNAPSHOT'
22
23
24
25
## XML layout code
26
```xml
0 commit comments