Skip to content
This repository was archived by the owner on Aug 22, 2020. It is now read-only.

Commit be54656

Browse files
committed
Bump to 0.1.0 & Add README.md
Signed-off-by: Fung <[email protected]>
1 parent d9ab7b2 commit be54656

File tree

3 files changed

+73
-1
lines changed

3 files changed

+73
-1
lines changed

.readme/vertical.gif

193 KB
Loading

README.md

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
# MaterialStepperView
2+
3+
[![](https://jitpack.io/v/moe.feng/MaterialStepperView.svg)](https://jitpack.io/#moe.feng/MaterialStepperView)
4+
5+
[Material Design Stepper](https://material.io/guidelines/components/steppers.html) Widgets on Android (SDK 21+, maybe can be lower)
6+
7+
## Import (Gradle)
8+
9+
First, add it in your root build.gradle at the end of repositories:
10+
11+
```gradle
12+
allprojects {
13+
repositories {
14+
...
15+
maven { url 'https://jitpack.io' }
16+
}
17+
}
18+
```
19+
20+
Add the dependency to your app modules:
21+
22+
```gradle
23+
dependencies {
24+
compile 'moe.feng:MaterialStepperView:latest-version'
25+
}
26+
```
27+
28+
## Styles
29+
30+
Currently, we have only made Vertical style stepper view.
31+
32+
There will be more styles in the future.
33+
34+
### Vertical Stepper View
35+
36+
[![Vertical Stepper View Demo](.readme/vertical.gif)](https://youtu.be/NCalAAP0y4o)
37+
38+
Instructions will be add later. You can read demo source code to learn how to use.
39+
40+
## Support me
41+
42+
If you like this library project and you are willing to support me, you can donate me via Alipay or PayPal.
43+
44+
45+
46+
PayPal: [https://www.paypal.me/fython](https://www.paypal.me/fython)
47+
48+
## License
49+
50+
```
51+
MIT License
52+
53+
Copyright (c) 2017 Fung Go (fython)
54+
55+
Permission is hereby granted, free of charge, to any person obtaining a copy
56+
of this software and associated documentation files (the "Software"), to deal
57+
in the Software without restriction, including without limitation the rights
58+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
59+
copies of the Software, and to permit persons to whom the Software is
60+
furnished to do so, subject to the following conditions:
61+
62+
The above copyright notice and this permission notice shall be included in all
63+
copies or substantial portions of the Software.
64+
65+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
66+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
67+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
68+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
69+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
70+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
71+
SOFTWARE.
72+
```

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ ext {
2525
targetSdkVersion = 26
2626
buildToolsVersion = "26.0.1"
2727
versionCode = 1
28-
versionName = '0.0.1'
28+
versionName = '0.1.0'
2929
}

0 commit comments

Comments
 (0)