|
| 1 | +# MaterialStepperView |
| 2 | + |
| 3 | +[](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 | +[](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 | +``` |
0 commit comments